Commit 5917f6b

mo khan <mo@mokhan.ca>
2021-02-08 21:34:33
chore: add makefile to generate a pdf
1 parent c17303e
doc/.gitignore
@@ -0,0 +1,1 @@
+*.pdf
doc/assignment1.md
@@ -17,7 +17,7 @@ Instructions: Please answer the following questions in complete sentences. Your
     A list of signals that can be sent are listed below:
 
     ```bash
-    モ kill -L
+    $ kill -L
     1) SIGHUP       2) SIGINT       3) SIGQUIT      4) SIGILL       5) SIGTRAP
     6) SIGABRT      7) SIGBUS       8) SIGFPE       9) SIGKILL     10) SIGUSR1
     11) SIGSEGV     12) SIGUSR2     13) SIGPIPE     14) SIGALRM     15) SIGTERM
@@ -60,7 +60,7 @@ Instructions: Please answer the following questions in complete sentences. Your
     When this program is run it will print a '.' 5 times and then exit.
 
     ```bash
-    モ ruby lib/sigtrap.rb
+    $ ruby lib/sigtrap.rb
     .....done
     ```
 
Makefile
@@ -0,0 +1,5 @@
+#!/usr/bin/make -f
+SHELL=/bin/sh
+
+doc/assignment1.pdf : doc/assignment1.md
+	pandoc doc/assignment1.md -f gfm -s -o doc/assignment1.pdf