diff options
author | Ian C <ianc@noddybox.co.uk> | 2005-04-05 01:01:58 +0000 |
---|---|---|
committer | Ian C <ianc@noddybox.co.uk> | 2005-04-05 01:01:58 +0000 |
commit | 517295ea0928dfd2bd30d997949c472f68d22e06 (patch) | |
tree | f733543fd9fc1792185583f8b7289cf2ed1bbb16 /src/test/GNUmakefile | |
parent | d625e19cdc79ec54d882aad95d05d7f24577bb6b (diff) |
Implemented install
Diffstat (limited to 'src/test/GNUmakefile')
-rw-r--r-- | src/test/GNUmakefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/test/GNUmakefile b/src/test/GNUmakefile index 97ca9c0..fe28cb0 100644 --- a/src/test/GNUmakefile +++ b/src/test/GNUmakefile @@ -18,7 +18,7 @@ # # ------------------------------------------------------------------------- # -# $Id: GNUmakefile,v 1.1 2005-03-24 00:07:40 ianc Exp $ +# $Id: GNUmakefile,v 1.2 2005-04-05 01:01:58 ianc Exp $ # @@ -26,7 +26,7 @@ TARGET = w32dtst.exe SOURCES = w32dtst.cpp -LIB = ../w32dlib.a +LIB = -L.. -lw32dlib RES = dialog @@ -36,7 +36,7 @@ FLAGS = -I.. -Wall -L.. -g DEPEND = depend.mak -$(TARGET): $(OBJECTS) $(LIB) +$(TARGET): $(OBJECTS) ../libw32dlib.a $(CXX) -o $(TARGET) $(FLAGS) $(OBJECTS) -mwindows -mconsole $(LIB) $(RES).o: $(RES).rc $(RES).h |