From 695965a636bddfbafa0e8b8c66bfd3e7efa5d440 Mon Sep 17 00:00:00 2001 From: "(no author)" <(no author)@0f7e0d06-a6f9-0310-a55f-d5f984f55e4c> Date: Thu, 10 Feb 2005 23:10:52 +0000 Subject: This commit was manufactured by cvs2svn to create tag 'START'. git-svn-id: file:///usr/local/opt/svn/repos/glagen@6 0f7e0d06-a6f9-0310-a55f-d5f984f55e4c --- tags/START/glagen/dll/Makefile | 72 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 72 insertions(+) create mode 100644 tags/START/glagen/dll/Makefile (limited to 'tags/START/glagen/dll/Makefile') 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 # +# i686 specifications added by Onidwa # +################################################################ + +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 -- cgit v1.2.3