
# Uncomment the following line, if you do not want to have shadow support.
HAVE_SHADOW_PASSWORDS=true

# Optimization used for compiling programs.
O=-O2 -fomit-frame-pointer -pipe

##################  End Of Configuration Part

flags= HAVE_SHADOW_PASSWORDS=$(HAVE_SHADOW_PASSWORDS) \
	"O=$(O)"

SUBDIRS = bind-4.8.3 dip337b-uri net nfs-server-2.0 pidentd-2.2 \
 tcp_wrapper-6.3 ytalk-3.0.1

all:
	for i in $(SUBDIRS); do (if [ -f $$i/Makefile.Linux ]; then \
		make -C $$i -f Makefile.Linux all ${flags}; else \
		make -C $$i all ${flags}; fi); done

install:
	for i in $(SUBDIRS); do (if [ -f $$i/Makefile.Linux ]; then \
		make -C $$i -f Makefile.Linux install ${flags}; else \
		make -C $$i install ${flags}; fi); done

clean:
	for i in $(SUBDIRS); do (if [ -f $$i/Makefile.Linux ]; then \
		make -C $$i -f Makefile.Linux clean ${flags}; else \
		make -C $$i clean ${flags}; fi); done

