JPRED-2 Add sources of all binaries (except alscript) to Git
[jpred.git] / sources / oc / Makefile
diff --git a/sources/oc/Makefile b/sources/oc/Makefile
new file mode 100644 (file)
index 0000000..19b42c9
--- /dev/null
@@ -0,0 +1,13 @@
+
+CFLAGS = -O3
+LIBS = -lm
+SRC=oc.c gjutil.c gjtimes.c
+
+all: clean oc
+
+oc: $(SRC) 
+       $(CC) $(CFLAGS) $(LIBS) $^ -o $@ -lm
+
+clean: 
+       rm -f *.o oc 
+