summaryrefslogtreecommitdiff
path: root/makefile
diff options
context:
space:
mode:
Diffstat (limited to 'makefile')
-rw-r--r--makefile20
1 files changed, 0 insertions, 20 deletions
diff --git a/makefile b/makefile
deleted file mode 100644
index 0625c7a..0000000
--- a/makefile
+++ /dev/null
@@ -1,20 +0,0 @@
-# Make sure everything compiles.
-#
-src := genx.c char-props.c
-
-CC := gcc
-CFLAGS := -Wall -Wextra -Werror
-
-# Compile.
-#
-.PHONY: all
-all: $(src:.c=.o)
-
-%.o: %.c
- $(CC) $(CPPFLAGS) $(CFLAGS) -c $<
-
-# Clean.
-#
-.PHONY: clean
-clean:
- rm -f $(src:.c=.o)