organized tests

This commit is contained in:
2019-04-10 11:52:35 +02:00
parent 65eb4d6ce2
commit bc8503b73e
5 changed files with 97 additions and 0 deletions

18
x86_tests/Makefile Normal file
View File

@@ -0,0 +1,18 @@
CC=gcc
CFLAG= -g -O
tests= test_ringbuffer.test
objects= ../ringbuffer.o
all: clean $(tests)
clean:
-rm $(objects)
-rm $(tests)
%.test: %.c $(objects)
$(CC) $(CFLAG) $(objects) -o $@ $<
./$@
%.o: %.c
$(CC) $(CFLAG) -c -o $@ $<