summaryrefslogtreecommitdiff
path: root/pause/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'pause/Makefile')
-rw-r--r--pause/Makefile13
1 files changed, 0 insertions, 13 deletions
diff --git a/pause/Makefile b/pause/Makefile
deleted file mode 100644
index f0951af72..000000000
--- a/pause/Makefile
+++ /dev/null
@@ -1,13 +0,0 @@
-src = $(wildcard *.c)
-obj = $(src:.c=.o)
-
-override LIBS +=
-override CFLAGS += -std=c99 -Os -Wall -Wextra -static
-
-pause: $(obj)
- $(CC) -o ../bin/$@ $^ $(CFLAGS) $(LIBS)
- strip ../bin/$@
-
-.PHONY: clean
-clean:
- rm -f $(obj) ../bin/pause