Reorganise for Travis

This commit is contained in:
Smaug123
2017-08-05 18:43:28 +01:00
parent ee83c89b4e
commit d59daa5000
6 changed files with 17 additions and 16 deletions

12
Makefile Normal file
View File

@@ -0,0 +1,12 @@
CC=gcc
CFLAGS=-I. -Werror -Wextra
HVM_SUBFOLDER=hvm
hvm: $(HVM_SUBFOLDER)/hvm.o
$(CC) -o hvm_execute $(HVM_SUBFOLDER)/main.c $(HVM_SUBFOLDER)/hvm.c $(CFLAGS)
clean:
rm -f $(HVM_SUBFOLDER)/*.o
test: $(HVM_SUBFOLDER)/hvm.o
./test.sh