initial commit

This commit is contained in:
TLINDEN
2015-09-01 22:53:00 +02:00
parent 9f58440588
commit 71ec0f780f
10 changed files with 886 additions and 2 deletions

16
analyze/Makefile Normal file
View File

@@ -0,0 +1,16 @@
LDFLAGS = -g
CFLAGS = -g -Wall -Wextra -Werror
DST = analyze
OBJS = analyze.o
all: $(DST)
$(DST): $(OBJS)
gcc $(LDFLAGS) $(OBJS) -lm -lz -o $(DST)
%.o: %.c
gcc -c $(CFLAGS) $*.c -o $*.o
clean:
rm -f *.o $(DST)