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 53 54
|
SUBDIRS = template info
CPPFLAGS = -Dsysconfdir=\"$(sysconfdir)\" @CPPFLAGS@
bin_PROGRAMS = qstat
qstat_SOURCES = \
xform.c xform.h \
config.c config.h \
debug.c debug.h \
utils.c utils.h \
hcache.c \
md5.c md5.h \
qserver.c qserver.h \
qstat.c qstat.h \
template.c \
a2s.c a2s.h \
packet_manip.c packet_manip.h \
ut2004.c ut2004.h \
doom3.c doom3.h \
gps.c gps.h \
gs2.c gs2.h \
gs3.c gs3.h \
ts2.c ts2.h \
tm.c tm.h \
haze.c haze.h \
ottd.c ottd.h \
wic.c wic.h \
fl.c fl.h \
tee.c tee.h \
cube2.c cube2.h \
ts3.c ts3.h \
bfbc2.c bfbc2.h \
ventrilo.c ventrilo.h \
mumble.c mumble.h \
terraria.c terraria.h \
crysis.c crysis.h \
dirtybomb.c dirtybomb.h \
starmade.c starmade.h \
farmsim.c farmsim.h \
ksp.c ksp.h
dist_configfiles_DATA = qstat.cfg
configfilesdir = $(sysconfdir)
EXTRA_DIST = CHANGES.txt COMPILE.txt LICENSE.txt \
Makefile.noauto \
ChangeLog \
qstatdoc.html \
contrib.cfg
cl:
cvs2cl.pl --utc --no-wrap --separate-header --no-times -f ChangeLog.cvs
rm -f ChangeLog.cvs.bak qstat.core
|