From 652669005deab5a1f89fd29e62daeea8d5d81774 Mon Sep 17 00:00:00 2001 From: Nedko Arnaudov Date: Sun, 9 Feb 2003 02:18:10 +0000 Subject: [PATCH] Uncommented dependency file generating rule. $(EXE_POSTFIX) use instead of ".exe". svn path=/trunk/; revision=4121 --- rosapps/sysutils/regexpl/Makefile | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/rosapps/sysutils/regexpl/Makefile b/rosapps/sysutils/regexpl/Makefile index bbae3ed2741..b9740555524 100644 --- a/rosapps/sysutils/regexpl/Makefile +++ b/rosapps/sysutils/regexpl/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.9 2003/01/15 19:53:01 robd Exp $ +# $Id: Makefile,v 1.10 2003/02/09 02:18:10 narnaoud Exp $ # # ReactOS makefile for RegExpl # @@ -22,9 +22,9 @@ IMPORT_KERNEL32=$(ROS_LIB)/kernel32.a IMPORT_ADVAPI32=$(ROS_LIB)/advapi32.a IMPORT_USER32=$(ROS_LIB)/user32.a -#depend.mak : *.h -# $(CC) \ -# -MM *.cpp *.c > $@ +depend.mak : *.h + $(CC) \ + -MM *.cpp *.c > $@ OBJECTS = \ ArgumentParser.o \ @@ -65,9 +65,9 @@ CLEAN_FILES = \ depend.mak -$(TARGET_NAME).exe: $(OBJECTS) $(TARGET_NAME).coff - $(CC) -Wl,--subsystem,console -o $(TARGET_NAME).exe $(OBJECTS) $(TARGET_NAME).coff $(IMPORT_KERNEL32) $(IMPORT_USER32) - $(NM) --numeric-sort $(TARGET_NAME).exe > $(TARGET_NAME).sym +$(TARGET_NAME)$(EXE_POSTFIX): $(OBJECTS) $(TARGET_NAME).coff + $(CC) -Wl,--subsystem,console -o $(TARGET_NAME)$(EXE_POSTFIX) $(OBJECTS) $(TARGET_NAME).coff $(IMPORT_KERNEL32) $(IMPORT_USER32) + $(NM) --numeric-sort $(TARGET_NAME)$(EXE_POSTFIX) > $(TARGET_NAME).sym #$(TARGET_NAME)$(EXE_POSTFIX): $(OBJECTS)