summaryrefslogtreecommitdiff
path: root/Makefile
blob: e8cd73fa411083f3f3f529fcbe4c518dfa7443a2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
make:
	cd ./libterm; make
	gcc -c motd.c
	gcc -c microbbs.c
	gcc -c buildinfo.c
	gcc -c sysinfo.c
	gcc -c articles.c
	gcc buildinfo.o motd.o microbbs.o sysinfo.o articles.o libterm/libterm.o -o microbbs

clean:
	rm -rf *.o microbbs
	cd ./libterm; make clean