home *** CD-ROM | disk | FTP | other *** search
Makefile | 1994-03-11 | 306 b | 22 lines |
- #
- # Makefile for Linux specific functions
- #
-
- TOPDIR=..
-
- include $(TOPDIR)/Makeconfig
- include $(TOPDIR)/Makerules
-
- DIRS=$(TARGET_OS)
-
- ifneq ($(MATH),true)
- DIRS := $(DIRS) $(TARGET_ARCH)
- endif
-
- lib depend realclean clean:
- @for i in $(DIRS); \
- do \
- echo making $@ in $$i; \
- ($(MAKE) -C $$i $@); \
- done
-