Home | History | Annotate | Download | only in apache
      1 #
      2 # Copyright (c) 2000 by Sun Microsystems, Inc.
      3 # All rights reserved.
      4 #
      5 #ident	"@(#)Makefile.sfw	1.1	00/02/23 SMI"
      6 
      7 all:=		TARGET = all
      8 install:=	TARGET = install
      9 clean:=		TARGET = clean
     10 clobber:=	TARGET = clobber
     11 lint:=		TARGET = lint
     12 
     13 include $(SRC)/cmd/Makefile.cmd
     14 
     15 SUBDIRS = src/c \
     16 	  src/java \
     17 	  example \
     18 	  conf
     19 
     20 all install clean clobber lint:	$(SUBDIRS)
     21 
     22 $(SUBDIRS): FRC
     23 	@cd $@; pwd; $(MAKE) $(MFLAGS) -f Makefile.sfw $(TARGET)
     24 
     25 FRC:
     26