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
|
## Process this file with automake to produce Makefile.in
if CLIENT
CSUBDIRS = client
else
CSUBDIRS =
endif
if SERVER
SSUBDIRS = server
else
SSUBDIRS =
endif
if ROBOT
RSUBDIRS = robot
CSUBDIRS = client
else
RSUBDIRS =
endif
if GGZSUPPORT
GSUBDIRS = ggz
else
GSUBDIRS =
endif
SUBDIRS= macros po common docs metaserver $(GSUBDIRS) $(SSUBDIRS) $(CSUBDIRS) $(RSUBDIRS)
EXTRA_DIST= teg-ggz.rh.spec teg.suse.spec teg.rh.spec README README.GGZ HACKING PEOPLE protocol.txt ReleaseNotes.txt
ACLOCAL_FLAGS = -I `pwd`/macros
|