summaryrefslogtreecommitdiff
path: root/branches/hugues/glagen/algo_distribue/tree/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'branches/hugues/glagen/algo_distribue/tree/Makefile')
-rw-r--r--branches/hugues/glagen/algo_distribue/tree/Makefile45
1 files changed, 0 insertions, 45 deletions
diff --git a/branches/hugues/glagen/algo_distribue/tree/Makefile b/branches/hugues/glagen/algo_distribue/tree/Makefile
deleted file mode 100644
index 895117b..0000000
--- a/branches/hugues/glagen/algo_distribue/tree/Makefile
+++ /dev/null
@@ -1,45 +0,0 @@
-##
-## Makefile for in
-##
-## Made by meng-tih lam
-## Login <lam_m@epita.fr>
-##
-## Started on Thu Feb 7 19:08:57 2002 meng-tih lam
-
-##
-
-NAME = glagen_tree
-SRCS = node.cc tree.cc main.cc
-
-OBJS = $(SRCS:.cc=.o)
-
-ARCHI_i586 = -g2 -Wall -W -Werror -O3
-ARCHI_NetBSD = -g2 -Wall -W -Werror -O3 -I/usr/X11R6/include
-ARCHI_sun4 = -g2 -Wall -W -Werror -O3
-ARCHI_alpha = -g2 -Wall -W -Werror -O3
-
-LIB_i586 =
-LIB_NetBSD = -L/usr/pkg/lib -L/usr/X11R6/lib -lGL -lGLU -lglut
-LIB_alpha =
-LIB_sun4 =
-
-CPPFLAGS = -I.
-CC = g++
-RM = rm -f
-
-.PHONY: all clean deps
-
-all: $(OBJS)
- $(CC) -o $(NAME) $(CFLAGS) $(OBJS)\
- $(LIB_${HOSTTYPE}) $(ARCHI_${HOSTTYPE})
-
-.cc.o:
- $(CC) $(ARCHI_${HOSTTYPE}) $(CPPFLAGS) -c $<
-
-clean:
- $(RM) $(OBJS) $(NAME) *~ \#*\#
-
-deps:
- makedepend $(SRC) 2>/dev/null
-
-re: clean all