-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
52 lines (47 loc) · 1.2 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
# ------------------------------------------------------- #
# util/Makefile ( NTHU CS MapleBBS Ver 2.36 ) #
# ------------------------------------------------------- #
# target : Makefile for ALL #
# create : 95/03/29 #
# update : 95/12/15 #
# ------------------------------------------------------- #
# freebsd , linux , solaris ... etc. (use by innbbsd)
OSTYPE = freebsd
SUBDIR += lib
SUBDIR += WD
SUBDIR += SO
SUBDIR += game
SUBDIR += util
all:
.for dir in ${SUBDIR}
@echo "####################"
@echo "make ${dir}"
@echo "####################"
@cd ${dir};make all
.endfor
@echo "####################"
@echo "make innbbsd"
@echo "####################"
@cd innbbsd;make ${OSTYPE}
install:
.for dir in ${SUBDIR}
@echo "####################"
@echo "make ${dir}"
@echo "####################"
@cd ${dir};make install
.endfor
@echo "####################"
@echo "make innbbsd"
@echo "####################"
@cd innbbsd;make ${OSTYPE} install
clean:
.for dir in ${SUBDIR}
@echo "####################"
@echo "clean ${dir}"
@echo "####################"
@cd ${dir};make clean
.endfor
@echo "####################"
@echo "clean innbbsd"
@echo "####################"
@cd innbbsd;make clean