aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorB. Watson <yalhcru@gmail.com>2021-07-21 00:12:31 -0400
committerB. Watson <yalhcru@gmail.com>2021-07-21 00:12:31 -0400
commitaa956853cc37d163113cafb2f1982b7a3a306fd1 (patch)
tree48aa7c82c29c24f38e65018d4c2d049af4018c1c /Makefile
downloadslowbaud-aa956853cc37d163113cafb2f1982b7a3a306fd1.tar.gz
initial commit
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile21
1 files changed, 21 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..084bee4
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,21 @@
+PROJ=slowbaud
+
+CC=gcc
+CFLAGS=-Wall -O2 $(EXTRACFLAGS)
+LIBS=-lutil
+RST2MAN=rst2man.py
+
+all: $(PROJ)
+
+$(PROJ): $(PROJ).c $(PROJ).1 README.txt
+ $(CC) $(CFLAGS) -o $(PROJ) $(PROJ).c $(LIBS)
+
+$(PROJ).1: $(PROJ).rst
+ $(RST2MAN) $(PROJ).rst > $(PROJ).1
+
+README.txt: $(PROJ).1
+ man ./$(PROJ).1 | sed 's,_\010,,' > README.txt
+
+# Don't remove the man page or README here, it's in git.
+clean:
+ rm -f $(PROJ) core *.o