diff --git a/config b/config index e407428..ff518cc 100644 --- a/config +++ b/config @@ -4,7 +4,6 @@ BUILD_NAME=ZEngine-0.8.4 ###Cygwin### -#EXE=.exe #GL_LIB_NAME=OpenGL32 #GL_INC_PATH=-I/usr/include/w32api/GL #GL_LIB_PATH=-L/lib/w32api diff --git a/makefile b/makefile index dec8c4f..c0ce177 100644 --- a/makefile +++ b/makefile @@ -32,7 +32,7 @@ $(LIB_OUT): $(OBJECTS) $(ALL_TESTS) : $(LIB_OUT) @echo Building $@... - $(CC) $(CFLAGS) $(CURDIR)/test/$@.cpp -o $(CURDIR)/test/bin/$@$(EXE) $(LIBS) + $(CC) $(CFLAGS) $(CURDIR)/test/$@.cpp -o $(CURDIR)/test/bin/$@ $(LIBS) @echo $@ compiled. .PHONY: $(ALL_TESTS) install clean veryclean @@ -51,7 +51,7 @@ clean: veryclean: rm -f $(OBJECTS) - rm -f $(CURDIR)/test/bin/*$(EXE) + rm -f $(CURDIR)/test/bin/Z* rm -f $(LIB_OUT) @echo All output files removed.