X-Git-Url: https://hackdaworld.org/gitweb/?p=my-code%2Fivac.git;a=blobdiff_plain;f=src%2FMakefile;fp=src%2FMakefile;h=0acc428d15a4c742062807a1b81964971d5ff90f;hp=0000000000000000000000000000000000000000;hb=c8c162c2b1f82f32160bcaa4159ea8735a8582c5;hpb=4546108a81317af1135683e85b9340715e585339 diff --git a/src/Makefile b/src/Makefile new file mode 100644 index 0000000..0acc428 --- /dev/null +++ b/src/Makefile @@ -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