oups .. added missing files, added Makefile + .cvsignore list
[my-code/ivac.git] / src / Makefile
diff --git a/src/Makefile b/src/Makefile
new file mode 100644 (file)
index 0000000..0acc428
--- /dev/null
@@ -0,0 +1,17 @@
+# Makefile of ivac
+
+INCLUDEDIR = /usr/include
+
+CFLAGS = -DDEBUG -O3 -Wall
+LIBS =
+
+OBJS = network.o event.o input.o
+
+ivac: $(OBJS)
+       $(CC) -o $@ $(OBJS) ivac.c $(LIBS)
+all: ivac
+
+clean:
+       rm -f $(OBJS) ivac
+
+remake: clean all