summaryrefslogtreecommitdiff
path: root/tools/br_ips/Makefile
diff options
context:
space:
mode:
authornullableVoidPtr <30564701+nullableVoidPtr@users.noreply.github.com>2019-08-04 10:18:13 +0000
committernullableVoidPtr <30564701+nullableVoidPtr@users.noreply.github.com>2019-08-04 10:18:13 +0000
commitba6f243c728de5d5c024aeb177026bcc59909e2e (patch)
treeaf8fdeb1c6cdf9cd8584f0d693a4049bfc408b9d /tools/br_ips/Makefile
parent6211b0c5ecbe4a43aa3f6e8fd96e99af29caa77a (diff)
parent250a331df9dbd312d572aaf0d629503417cfc9d4 (diff)
Forgot upstream tools tracking
Diffstat (limited to 'tools/br_ips/Makefile')
-rw-r--r--tools/br_ips/Makefile13
1 files changed, 13 insertions, 0 deletions
diff --git a/tools/br_ips/Makefile b/tools/br_ips/Makefile
new file mode 100644
index 0000000..e80e257
--- /dev/null
+++ b/tools/br_ips/Makefile
@@ -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 $@ $^