summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile20
1 files changed, 20 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..faf3d3b
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,20 @@
+.POSIX:
+# This Makefile was generated by maje
+# See https://gitlab.com/jkaivo/maje/ for more information
+# Do not edit this Makefile by hand
+default: all
+CC=c99
+CFLAGS=-Wall -Wextra -Wpedantic -Werror -g
+all: maje
+clean:
+ rm -f maje *.o
+make.o: make.c
+maje: make.o
+sources.o: sources.c
+maje: sources.o
+main.o: main.c
+maje: main.o
+maje.o: maje.c
+maje: maje.o
+maje:
+ $(CC) -o $@ *.o