summaryrefslogtreecommitdiff
path: root/Makefile
blob: a453f44466b5248999da56d9b3f382b5f430f52a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
MAKE=gmake
all:    base 
	@echo "Now edit the ./conf.txt file and run ./ychat!"
install: deinstall
uninstall: deinstall
deinstall:
	@echo Install/deinstall is not supported!
	@echo Start yChat with ./ychat instead! 
	@exit 1
base:	
	@${MAKE} -C ./src 
clean_base:
	@${MAKE} -C ./src clean
stats:
	@perl scripts/stats.pl
run: 
	./ychat
gpl:
	@more COPYING
clean:	clean_base 
debug:
	@gdb ./ychat ychat.core
version:
	@sh ./scripts/version.sh