summaryrefslogtreecommitdiff
path: root/newpass/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'newpass/Makefile')
-rw-r--r--newpass/Makefile13
1 files changed, 0 insertions, 13 deletions
diff --git a/newpass/Makefile b/newpass/Makefile
deleted file mode 100644
index 8d28a99..0000000
--- a/newpass/Makefile
+++ /dev/null
@@ -1,13 +0,0 @@
-CFILES = \
- core/newpass.c
-
-OUT_FILE = ../bin/newpass
-CFLAGS = -Wall -pedantic
-CC = clang
-
-.PHONY: all
-all: $(OUT_FILE)
-
-.PHONY: $(OUT_FILE)
-$(OUT_FILE):
- $(CC) $(CFLAGS) $(CFILES) -o $@