diff options
Diffstat (limited to 'sample/etc/chess/Makefile')
-rw-r--r-- | sample/etc/chess/Makefile | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/sample/etc/chess/Makefile b/sample/etc/chess/Makefile new file mode 100644 index 00000000..a01e3cf1 --- /dev/null +++ b/sample/etc/chess/Makefile @@ -0,0 +1,11 @@ +BBSHOME?=$(HOME) +TARGET=$(BBSHOME)/etc/chess/ +FILES= 1.poem 2.poem 3.poem 4.poem 5.poem 6.poem 7.poem 8.poem 9.poem \ + 10.poem 11.poem 12.poem 13.poem 14.poem 15.poem 16.poem + +all: + +install: + install -d $(TARGET) + install -c -m 644 $(FILES) $(TARGET) + |