blob: 3bed77d57c294a83bc911f2cd05c067ae0e4607b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
MAKE=gmake
all: base
@echo "Now edit the ./conf.txt file and run ./ychat!"
@echo WARNING! This software is EXPERIMENTAL!
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
|