Initial attempt to bootstrap Travis CI

This commit is contained in:
PikalaxALT
2019-06-23 19:29:44 -04:00
parent 64498f4107
commit 8e7a1dac01
8 changed files with 378 additions and 3 deletions
+13
View File
@@ -0,0 +1,13 @@
CC := gcc
CFLAGS := -O3
all: br_ips ips_patch
clean:
rm -f br_ips ips_patch br_ips.exe ips_patch.exe
br_ips: br_ips.c
$(CC) $(CFLAGS) -o $@ $^
ips_patch: ips_patch.c
$(CC) $(CFLAGS) -o $@ $^