home *** CD-ROM | disk | FTP | other *** search
Makefile | 1994-03-11 | 355 b | 27 lines |
- #
- # Makefile for Linux specific functions
- #
-
- TOPDIR=../../..
-
- include $(TOPDIR)/Makeconfig
- include $(TOPDIR)/Makerules
-
- DIRS=crt
-
- lib clean realclean depend::
- ifneq ($(DIRS),)
- @for d in $(DIRS); do \
- ($(MAKE) -C $$d $@); \
- done
- else
- @true
- endif
-
- #
- # include a dependency file if one exists
- #
- ifeq (.depend,$(wildcard .depend))
- include .depend
- endif
-