diff --git a/Makefile b/Makefile index 578bdc9..a9e5414 100644 --- a/Makefile +++ b/Makefile @@ -18,13 +18,13 @@ PROGRAMNAME=platform_folders O_FILES=${PROGRAMNAME}.o sago/platform_folders.o -total: ${PROGRAMNAME} +total: ${PROGRAMNAME}.out clean: rm -f */*.o *.o *.P */*.P ${PROGRAMNAME} -${PROGRAMNAME}: $(O_FILES) - $(CXX) -O -o ${PROGRAMNAME} $(O_FILES) $(BASE_LIBS) +${PROGRAMNAME}.out: $(O_FILES) + $(CXX) -O -o ${PROGRAMNAME}.out $(O_FILES) $(BASE_LIBS) %.o : %.cpp $(CXX) -MD ${BASE_CFLAGS} -o $@ $< diff --git a/nbproject/configurations.xml b/nbproject/configurations.xml index 8be8667..6a5da48 100644 --- a/nbproject/configurations.xml +++ b/nbproject/configurations.xml @@ -36,7 +36,7 @@ . ${MAKE} -f Makefile ${MAKE} -f Makefile clean - platform_folders + platform_folders.out