Added Makefile to compile synthetic tests

This commit is contained in:
Daniel Marjamäki 2016-11-02 13:57:29 +01:00
parent 50d6a23f93
commit ad6c82b2ca
1 changed files with 14 additions and 0 deletions

14
test/synthetic/Makefile Normal file
View File

@ -0,0 +1,14 @@
all: controlflow.o data.o functions.o uninit.o
controlflow.o: controlflow.c
gcc -c controlflow.c
data.o: data.c
gcc -c data.c
functions.o: functions.c
gcc -c functions.c
uninit.o: uninit.c
gcc -std=gnu99 -c uninit.c