summaryrefslogtreecommitdiff
path: root/opengl/GNUmakefile
diff options
context:
space:
mode:
authorIan C <ianc@noddybox.co.uk>2005-04-18 01:01:56 +0000
committerIan C <ianc@noddybox.co.uk>2005-04-18 01:01:56 +0000
commit4d95c5cdaa720c5207a5f5b0d97a884a7ed1a3ab (patch)
treed44f4b49f78108b10a651c6a8c4d504093c7cafe /opengl/GNUmakefile
parent14123d8051df5cbae0331c28f63a8ec3ef9a3852 (diff)
Added core of group explode. Also fixed modal windows as well as can be done with MS.
Diffstat (limited to 'opengl/GNUmakefile')
-rw-r--r--opengl/GNUmakefile10
1 files changed, 4 insertions, 6 deletions
diff --git a/opengl/GNUmakefile b/opengl/GNUmakefile
index bedb0b9..700fb6d 100644
--- a/opengl/GNUmakefile
+++ b/opengl/GNUmakefile
@@ -18,7 +18,7 @@
#
# -------------------------------------------------------------------------
#
-# $Id: GNUmakefile,v 1.2 2005-04-17 01:53:15 ianc Exp $
+# $Id: GNUmakefile,v 1.3 2005-04-18 01:01:56 ianc Exp $
#
include ../make.conf
@@ -40,8 +40,6 @@ OBJECTS = $(SOURCES:.cpp=.o) $(RES).o
OUTDLL = $(TARGET).dll
-OUTLIB = $(TARGET).a
-
WRAPPER = ../wrapper
DLLLIBS = $(WRAPPER)/mingwms.lib $(MILKSHAPE)/lib/msModelLib.lib \
@@ -52,14 +50,14 @@ FLAGS = -I$(WRAPPER) -I$(MILKSHAPE) -Wall `w32dlib-config --cflags` \
$(OUTDLL): $(OBJECTS)
- dllwrap --output-lib=$(OUTLIB) --dllname=$(OUTDLL) \
+ dllwrap --dllname=$(OUTDLL) \
--driver-name=c++ $(OBJECTS) $(DLLLIBS)
# Unfortunately the windres resource compiler doesn't like my RC, so you
# need RC.EXE from the Platform SDK to compile it to a RES first.
#
$(RES).o: $(RES).res
- windres -v -i $(RES).res -o $(RES).o
+ windres -i $(RES).res -o $(RES).o
$(RES).res: $(RES).rc $(RES).h
rc $(RES).rc
@@ -70,7 +68,7 @@ $(RES).res: $(RES).rc $(RES).h
-include depend.mak
clean:
- -rm -f $(OUTDLL) $(OUTLIB) $(OBJECTS) $(RES).res
+ -rm -f $(OUTDLL) $(OBJECTS) $(RES).res
depend:
@echo Dependencies updated....