summaryrefslogtreecommitdiff
path: root/tags/START/glagen/dll/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'tags/START/glagen/dll/Makefile')
-rw-r--r--tags/START/glagen/dll/Makefile72
1 files changed, 72 insertions, 0 deletions
diff --git a/tags/START/glagen/dll/Makefile b/tags/START/glagen/dll/Makefile
new file mode 100644
index 0000000..b3db10d
--- /dev/null
+++ b/tags/START/glagen/dll/Makefile
@@ -0,0 +1,72 @@
+################################################################
+# GLAGEN Project (http://www.planetmarvin.zyns.com/) #
+# Makefile done by Titi <Meng-Tih LAM> #
+# i686 specifications added by Onidwa <Hugues HIEGEL> #
+################################################################
+
+CC = g++
+RM = rm -fr
+
+NAME = glagen-$(MODULE)-$(VERSION).$(SUBVERSION)
+MODULE = libloader
+VERSION = 2
+SUBVERSION = 01b
+
+KERNEL = `uname -s`
+
+DEBUG =
+
+OBJS = $(SRCS:.cc=.o)
+HDRS = $(SRCS:.cc=.hh)
+SRCS = classes/libclass.cc\
+ classes/matrix.cc\
+ classes/node.cc\
+ classes/Data_string.cc\
+ classes/Data_property.cc\
+ create_dotproperty_init.cc\
+ libraryloader.cc\
+ main.cc
+
+ARCHI_NetBSD = $(DEBUG) -g2 -Wall -W -O3
+CPP_NetBSD = -I/usr/include\
+ -I/usr/include/GL\
+ -I/usr/X11R6/include
+LIB_NetBSD = -L/usr/X11R6/lib\
+ -L/usr/lib\
+ -L/usr/pkg/lib\
+ -lc\
+ -lm\
+ -lX11\
+ -lGL\
+ -lGLU\
+ -lglut
+
+ARCHI_Linux = $(DEBUG) -g2 -O3 -I/usr/X11R6/include
+LIB_Linux = -L/usr/X11R6/lib\
+ -L/usr/include\
+ -L/usr/lib\
+ -L/usr/pkg/lib\
+ -lc\
+ -lm\
+ -lX11\
+ -lGL\
+ -lGLU\
+ -lglut
+CPP_Linux = -I.\
+ -I/usr/include
+
+.PHONY: all clean deps
+
+all: $(OBJS)
+ $(CC) -o $(NAME) $(CPP_Linux) $(OBJS) $(LIB_Linux) $(ARCHI_Linux)
+
+.cc.o:
+ $(CC) $(ARCHI_Linux) $(CPP_Linux) -c $< -o $(<:.cc=.o)
+
+clean:
+ $(RM) $(OBJS) $(NAME) *~ */*~ \#*\#
+
+deps:
+ makedepend $(SRC) 2>/dev/null
+
+re: clean all