summaryrefslogtreecommitdiff
path: root/src/GNUmakefile
diff options
context:
space:
mode:
authorIan C <ianc@noddybox.co.uk>2005-03-24 00:07:40 +0000
committerIan C <ianc@noddybox.co.uk>2005-03-24 00:07:40 +0000
commit5a11b5f4b59c46e919989a0fdd05d81ba5ac9347 (patch)
tree83e20dd5e93ba6f3afedb76f3fefccbcfb045cc6 /src/GNUmakefile
parent38ec2689af45b5ef29b5837bac0e4ef45bc75fd6 (diff)
Code updates
Diffstat (limited to 'src/GNUmakefile')
-rw-r--r--src/GNUmakefile13
1 files changed, 9 insertions, 4 deletions
diff --git a/src/GNUmakefile b/src/GNUmakefile
index a1cbcfb..9891e01 100644
--- a/src/GNUmakefile
+++ b/src/GNUmakefile
@@ -18,7 +18,7 @@
#
# -------------------------------------------------------------------------
#
-# $Id: GNUmakefile,v 1.1 2005-03-22 01:43:54 ianc Exp $
+# $Id: GNUmakefile,v 1.2 2005-03-24 00:07:40 ianc Exp $
#
@@ -35,6 +35,10 @@ INSTALLDIR = C:/w32dlib
#
CREATECONF = 1
+# Uncomment this if you want a debug build
+#
+DEBUG = -g
+
#
# **************************************** END OF CONFIGURATION
@@ -49,20 +53,21 @@ SOURCES = autocheck.cpp \
common.cpp \
control.cpp \
dialog.cpp \
- text.cpp
+ text.cpp \
+ static.cpp
HEADERS = w32dlib/*.h
OBJECTS = $(SOURCES:.cpp=.o)
-FLAGS = -I. # -Wall
+FLAGS = -I. -Wall $(DEBUG)
DEPEND = depend.mak
DOCDIR = ../doc
-$(TARGET): depend $(OBJECTS) GNUMakefile
+$(TARGET): $(OBJECTS) GNUMakefile
ar rcusv $(TARGET) $(OBJECTS)
doc: $(DOCDIR)/html/index.html