diff options
Diffstat (limited to 'opengl/GNUmakefile')
-rw-r--r-- | opengl/GNUmakefile | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/opengl/GNUmakefile b/opengl/GNUmakefile index 0259322..bedb0b9 100644 --- a/opengl/GNUmakefile +++ b/opengl/GNUmakefile @@ -18,7 +18,7 @@ # # ------------------------------------------------------------------------- # -# $Id: GNUmakefile,v 1.1 2005-04-15 00:53:56 ianc Exp $ +# $Id: GNUmakefile,v 1.2 2005-04-17 01:53:15 ianc Exp $ # include ../make.conf @@ -28,11 +28,13 @@ RES = dialog SOURCES = main.cpp \ gldialog.cpp \ - generate.cpp + generate.cpp \ + config.cpp HEADERS = $(RES).h \ gldialog.h \ - generate.h + generate.h \ + config.h OBJECTS = $(SOURCES:.cpp=.o) $(RES).o @@ -45,7 +47,8 @@ WRAPPER = ../wrapper DLLLIBS = $(WRAPPER)/mingwms.lib $(MILKSHAPE)/lib/msModelLib.lib \ `w32dlib-config --libs` -FLAGS = -I$(WRAPPER) -I$(MILKSHAPE) -Wall `w32dlib-config --cflags` +FLAGS = -I$(WRAPPER) -I$(MILKSHAPE) -Wall `w32dlib-config --cflags` \ + -DREGISTRY_USAGE=$(REGISTRY_USAGE) $(OUTDLL): $(OBJECTS) @@ -67,7 +70,7 @@ $(RES).res: $(RES).rc $(RES).h -include depend.mak clean: - -rm -f $(OUTDLL) $(OUTLIB) $(OBJECTS) $(RES).res depend.mak + -rm -f $(OUTDLL) $(OUTLIB) $(OBJECTS) $(RES).res depend: @echo Dependencies updated.... |