pkgsrc/pkgtools/pkg_install/files/Makefile.in
jlam eecdcc3e52 Don't use .PHONY, which isn't understood by every make. Split out the
"all" target as the first one so that a bare "make" will build the "all"
target by default.  This should fix problems seen on AIX 5.1.
2004-08-31 17:40:41 +00:00

20 lines
448 B
Makefile

# $NetBSD: Makefile.in,v 1.6 2004/08/31 17:40:41 jlam Exp $
SUBDIRS= lib add admin create delete info view
all:
@for dir in $(SUBDIRS); do \
( cd $$dir && $(MAKE) $@ ) || exit 1; \
done
install clean:
@for dir in $(SUBDIRS); do \
( cd $$dir && $(MAKE) $@ ) || exit 1; \
done
distclean: clean
rm -f config.log config.status configure.lineno
rm -f Makefile */Makefile
rm -f lib/config.h
rm -f view/linkfarm.sh
rm -f view/pkg_view.sh