home *** CD-ROM | disk | FTP | other *** search
Makefile | 1995-01-10 | 759 b | 26 lines |
- # Optimization used for compiling programs.
- O=-O2 -fomit-frame-pointer -pipe
-
- ################## End Of Configuration Part
-
- flags = "O=$(O)"
-
- SUBDIRS = nfs-server-2.0 pidentd-2.2 \
- tcp_wrapper-6.3 traceroute-4.4BSD ytalk-3.0.1 # dip337d-uri net-tools-1.1.38
-
- 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
-
-