--- makefile +++ makefile.fixed @@ -43,13 +43,13 @@ # linking the program. $(PROG): $(GAMEOBJS) - $(CXX) $(LIBS) $(GAMEOBJS) -o $(PROG) + $(CXX) $(GAMEOBJS) $(LIBS) -o $(PROG) pak: $(PAKOBJS) - $(CXX) $(LIBS) $(PAKOBJS) -o pak + $(CXX) $(PAKOBJS) $(LIBS) -o pak mapeditor: $(MAPOBJS) - $(CXX) $(LIBS) $(MAPOBJS) -o mapeditor + $(CXX) $(MAPOBJS) $(LIBS) -o mapeditor strip mapeditor # cleaning everything that can be automatically recreated with "make".