diff options
Diffstat (limited to 'src/GNUmakefile')
| -rw-r--r-- | src/GNUmakefile | 13 | 
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 | 
