mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-06 00:30:08 +00:00
53a595f448
Fri Feb 20 06:40:00 1998 Tim Janik <timj@gimp.org> * gtk/gtktipsquery.h: * gtk/gtktipsquery.c: New widget GtkTipsQuery for letting the user query tooltips of widgets. * gtk/testgtk.c: add example for GtkTipsQuery. * gtk/gtk.h: include gtk/gtktipsquery.h. * gtk/gtklabel.c: enable default constructing.
34 lines
721 B
Makefile
34 lines
721 B
Makefile
## Process this file with automake to produce Makefile.in
|
|
|
|
SRC_SUBDIRS = glib gdk gtk
|
|
SUBDIRS = $(SRC_SUBDIRS) docs
|
|
|
|
EXTRA_DIST = \
|
|
gtk+.prj \
|
|
makecopyright \
|
|
TODO
|
|
|
|
.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"`
|