summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile36
1 files changed, 36 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..f05117c
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,36 @@
+TARGET=quart
+SRC=*.c
+CC=gcc
+CFLAGS=-D_GNU_SOURCE -std=c99 -pedantic -lm
+REL_FLAGS=-O3
+DBG_FLAGS=-Wall -g3
+COMPILE=$(CC) -o $(TARGET) $(SRC) $(CFLAGS) -Ilib
+
+make: $(SRC)
+ $(CC) $(REL_FLAGS) $(CFLAGS) -o $(TARGET) $^
+
+debug: $(SRC)
+ $(CC) $(DBG_FLAGS) -fsanitize=address $(CFLAGS) -o $(TARGET) $^
+
+noasan: $(SRC)
+ $(CC) $(DBG_FLAGS) $(CFLAGS) -o $(TARGET) $^
+
+docs:
+ scdoc < quart.1.scd > quart.1
+ scdoc < quart.5.scd > quart.5
+ ln -fs quart.1 qc.1
+
+.PHONY: clean
+
+clean:
+ rm -f *.o
+ rm -f *.1
+ rm -f *.5
+ rm -f $(TARGET)
+
+install: $(TARGET)
+ @cp -v $(TARGET) /usr/local/bin/$(TARGET)
+ @cp -v qc /usr/local/bin/qc
+
+uninstall:
+ @rm -v /usr/local/bin/$(TARGET)