diff options
author | Ian C <ianc@noddybox.co.uk> | 2005-04-16 01:03:31 +0000 |
---|---|---|
committer | Ian C <ianc@noddybox.co.uk> | 2005-04-16 01:03:31 +0000 |
commit | ba88028c9e6f7a2da0b9bc31e86ca9633613745e (patch) | |
tree | a5c45537df2930eb31a8991d2727e27d2c3f86aa /src/test/GNUmakefile | |
parent | 339682700982983738dd6cdffc387393bb2bd5bb (diff) |
Changed message boxes to take a title string
Diffstat (limited to 'src/test/GNUmakefile')
-rw-r--r-- | src/test/GNUmakefile | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/src/test/GNUmakefile b/src/test/GNUmakefile index db4a121..dc0618e 100644 --- a/src/test/GNUmakefile +++ b/src/test/GNUmakefile @@ -18,7 +18,7 @@ # # ------------------------------------------------------------------------- # -# $Id: GNUmakefile,v 1.3 2005-04-11 23:00:49 ianc Exp $ +# $Id: GNUmakefile,v 1.4 2005-04-16 01:03:31 ianc Exp $ # @@ -34,8 +34,6 @@ OBJECTS = $(SOURCES:.cpp=.o) $(RES).o FLAGS = -I.. -Wall -L.. -g -DEPEND = depend.mak - $(TARGET): $(OBJECTS) ../libw32dlib.a $(CXX) -o $(TARGET) $(FLAGS) $(OBJECTS) -mwindows -mconsole $(LIB) @@ -51,11 +49,9 @@ $(RES).o: $(RES).rc $(RES).h clean: -rm -f $(TARGET) $(OBJECTS) depend.mak -depend: $(DEPEND) - -$(DEPEND): $(SOURCES) $(HEADERS) GNUMakefile +depend: @echo Dependencies updated.... - $(CXX) -MM $(FLAGS) $(SOURCES) > $(DEPEND) + $(CXX) -MM $(FLAGS) $(SOURCES) > depend.mak # END OF FILE |