First commit

This commit is contained in:
Daniel Holden
2013-09-19 20:57:40 +01:00
commit c2f936bcb7
9 changed files with 1884 additions and 0 deletions

13
Makefile Normal file
View File

@@ -0,0 +1,13 @@
CC = gcc
CFLAGS = -ansi -Wall -Werror -Wno-unused -g
TESTS = $(wildcard tests/*.c)
all: check
check: $(TESTS) mpc.c
$(CC) $(CFLAGS) $^ -o test
./test
clean:
rm test.exe