initial commit

This commit is contained in:
2018-12-04 14:40:14 -03:00
commit 948c51ada1
14 changed files with 515 additions and 0 deletions

16
test/Makefile Normal file
View File

@@ -0,0 +1,16 @@
CC=gcc
CFLAGS=-Wall -I../src/include -DDEBUG -g
SRC=test.c
OBJ=$(SRC:.c=.o)
OBJ+=../src/random.o
all: test
test: $(OBJ)
$(CC) -o $@ $^ $(LDFLAGS)
clean:
rm -f *.o test
.PHONY: all test clean