LIB_DIR=#lib
DIRS=ld as
DIRS:=$(DIRS) $(LIB_DIR)
BINDIR=/usr/bin

#MAKE=make

all install:
	for d in $(DIRS); do \
	  (cd $$d; $(MAKE) $(MFLAGS) $@;); \
	 done

depend clean clobber:
	for d in $(DIRS); do \
	  (cd $$d; $(MAKE) $(MFLAGS) $@;); \
	 done

library:
	(cd $(LIB_DIR); $(MAKE))
