1997-11-24 22:37:52 +00:00
|
|
|
## Process this file with automake to produce Makefile.in
|
|
|
|
|
|
|
|
SRC_SUBDIRS = glib gdk gtk
|
|
|
|
SUBDIRS = $(SRC_SUBDIRS) docs
|
|
|
|
|
1998-01-24 18:45:34 +00:00
|
|
|
EXTRA_DIST = gtk+.prj makecopyright TODO REFCOUNTING BUGS
|
1997-11-24 22:37:52 +00:00
|
|
|
|
|
|
|
.PHONY: files populate checkin release
|
|
|
|
|
|
|
|
files:
|
|
|
|
@files=`ls $(DISTFILES) 2> /dev/null `; for p in $$files; do \
|
|
|
|
echo $$p; \
|
|
|
|
done
|
|
|
|
@for subdir in $(SUBDIRS); do \
|
|
|
|
files=`cd $$subdir; $(MAKE) files | grep -v "make\[[1-9]\]"`; \
|
|
|
|
for file in $$files; do \
|
|
|
|
echo $$subdir/$$file; \
|
|
|
|
done; \
|
|
|
|
done
|
|
|
|
|
|
|
|
populate:
|
|
|
|
@echo "populating project"
|
|
|
|
@files=`$(MAKE) files | grep -v "make\[[1-9]\]"`; prcs populate -d gtk+.prj $$files
|
|
|
|
|
|
|
|
checkin: populate
|
|
|
|
@echo "checking in project"
|
|
|
|
@prcs checkin
|
|
|
|
|
|
|
|
release:
|
|
|
|
$(MAKE) dist distdir=$(PACKAGE)`date +"%y%m%d"`
|