summaryrefslogtreecommitdiff
path: root/tools/patch_strtab/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'tools/patch_strtab/Makefile')
-rw-r--r--tools/patch_strtab/Makefile20
1 files changed, 0 insertions, 20 deletions
diff --git a/tools/patch_strtab/Makefile b/tools/patch_strtab/Makefile
deleted file mode 100644
index b76d8dd..0000000
--- a/tools/patch_strtab/Makefile
+++ /dev/null
@@ -1,20 +0,0 @@
-CC := gcc
-CFLAGS := -O3 -std=c99 -Wall
-
-ifeq ($(OS),Windows_NT)
-EXE := .exe
-else
-EXE :=
-endif
-
-TARGET := patch_strtab$(EXE)
-
-.PHONY: all
-
-all: $(TARGET)
-
-clean:
- rm -f patch_strtab patch_strtab.exe
-
-$(TARGET): patch_strtab.c
- $(CC) $(CFLAGS) -o $@ $^