summaryrefslogtreecommitdiff
path: root/trunk/glagen/dll/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'trunk/glagen/dll/Makefile')
-rw-r--r--trunk/glagen/dll/Makefile72
1 files changed, 0 insertions, 72 deletions
diff --git a/trunk/glagen/dll/Makefile b/trunk/glagen/dll/Makefile
deleted file mode 100644
index b3db10d..0000000
--- a/trunk/glagen/dll/Makefile
+++ /dev/null
@@ -1,72 +0,0 @@
-################################################################
-# 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