diff options
author | kcwu <kcwu@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2004-10-19 22:17:05 +0800 |
---|---|---|
committer | kcwu <kcwu@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2004-10-19 22:17:05 +0800 |
commit | 81cc284beee802e5d1136d63679df5cdd4feb451 (patch) | |
tree | 50dd1ec57b2a0410dc04bf32b8ebd1777c0fbf2c | |
parent | 8b1485ad2959d64ab841656ca235059f52c13e45 (diff) | |
download | pttbbs-81cc284beee802e5d1136d63679df5cdd4feb451.tar pttbbs-81cc284beee802e5d1136d63679df5cdd4feb451.tar.gz pttbbs-81cc284beee802e5d1136d63679df5cdd4feb451.tar.bz2 pttbbs-81cc284beee802e5d1136d63679df5cdd4feb451.tar.lz pttbbs-81cc284beee802e5d1136d63679df5cdd4feb451.tar.xz pttbbs-81cc284beee802e5d1136d63679df5cdd4feb451.tar.zst pttbbs-81cc284beee802e5d1136d63679df5cdd4feb451.zip |
install sample chess poem
git-svn-id: http://opensvn.csie.org/pttbbs/trunk/pttbbs@2267 63ad8ddf-47c3-0310-b6dd-a9e9d9715204
-rw-r--r-- | sample/etc/Makefile | 2 | ||||
-rw-r--r-- | sample/etc/chess/Makefile | 11 |
2 files changed, 12 insertions, 1 deletions
diff --git a/sample/etc/Makefile b/sample/etc/Makefile index 449fe284..bcb8469d 100644 --- a/sample/etc/Makefile +++ b/sample/etc/Makefile @@ -1,4 +1,4 @@ -SUBDIR=chickens +SUBDIR= chess chickens BBSHOME?=$(HOME) TARGET=$(BBSHOME)/etc/ FILES= @five Welcome register today_boring \ 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) + |