diff options
author | Ian C <ianc@noddybox.co.uk> | 2005-04-17 01:53:15 +0000 |
---|---|---|
committer | Ian C <ianc@noddybox.co.uk> | 2005-04-17 01:53:15 +0000 |
commit | 14123d8051df5cbae0331c28f63a8ec3ef9a3852 (patch) | |
tree | af216501262ec2e6ced154b4bfe02c0f7b679495 /opengl/GNUmakefile | |
parent | 71c1ae31007891ecfd59236ba8564bc4b5deb1e4 (diff) |
Development checking
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.... |