summaryrefslogtreecommitdiff
path: root/src/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'src/Makefile')
-rw-r--r--src/Makefile40
1 files changed, 40 insertions, 0 deletions
diff --git a/src/Makefile b/src/Makefile
new file mode 100644
index 0000000..d6d9b44
--- /dev/null
+++ b/src/Makefile
@@ -0,0 +1,40 @@
+#
+# Ivy, C interface
+#
+# Copyright (C) 1997-2000
+# Centre d'Études de la Navigation Aérienne
+#
+# Makefile
+#
+# Authors: François-Régis Colin <fcolin@cena.fr>
+# Stéphane Chatty <chatty@cena.fr>
+#
+# $Id$
+#
+# Please refer to file version.h for the
+# copyright notice regarding this software
+#
+
+
+MAJOR=0
+MINOR=1
+
+CC=gcc
+CFLAGS = -g
+# not yiet need Modified Glut ivyglutprobe
+
+.c.o:
+ $(CC) $(CFLAGS) -c $*.c
+
+all: festivy
+
+festivy: festivy.o
+ $(CC) $(CFLAGS) -o festivy festivy.o -livy
+
+clean:
+ -rm -f festivy *.o *.a *.so *.so.* *~
+
+
+install: festivy
+ test -d $(PREFIX)/usr/bin || mkdirhier $(PREFIX)/usr/bin
+ install -m755 festivy $(PREFIX)/usr/bin