git-svn-id: https://svn.code.sf.net/p/rathena/svn/trunk@13483 54d463be-8e91-2dee-dedb-b68131a5f0ec
27 lines
701 B
Makefile
27 lines
701 B
Makefile
|
|
@SET_MAKE@
|
|
|
|
#####################################################################
|
|
.PHONY : all adduser mapcache clean help
|
|
|
|
all: adduser mapcache
|
|
|
|
adduser:
|
|
@CC@ -o ../../tools/adduser@EXEEXT@ adduser.c
|
|
|
|
mapcache:
|
|
@CC@ -o ../../mapcache@EXEEXT@ mapcache.c grfio.c -lz
|
|
|
|
clean:
|
|
rm -rf *.o ../../tools/adduser@EXEEXT@ ../../mapcache@EXEEXT@
|
|
|
|
help:
|
|
@echo "possible targets are 'adduser' 'mapcache' 'all' 'clean' 'help'"
|
|
@echo "'adduser' - ???"
|
|
@echo "'mapcache' - mapcache generator"
|
|
@echo "'all' - builds all above targets"
|
|
@echo "'clean' - cleans builds and objects"
|
|
@echo "'help' - outputs this message"
|
|
|
|
#####################################################################
|