Commit 5917f6b
Changed files (3)
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