forked from AuroraMiddleware/gtk
7033e33822
Fri Mar 27 16:35:00 PST 1998 Shawn T. Amundson <amundson@gtk.org> * Released GTK+ 0.99.9 * examples: added a couple more, fixed some Makefiles
56 lines
1.3 KiB
Makefile
56 lines
1.3 KiB
Makefile
## Process this file with automake to produce Makefile.in
|
|
|
|
SRC_SUBDIRS = glib gdk gtk
|
|
SUBDIRS = $(SRC_SUBDIRS) docs
|
|
|
|
bin_SCRIPTS = gtk-config
|
|
|
|
EXTRA_DIST = \
|
|
gtk+.prj \
|
|
gtk.m4 \
|
|
makecopyright \
|
|
TODO \
|
|
examples/gtkdial/Makefile \
|
|
examples/gtkdial/dial_test.c \
|
|
examples/gtkdial/gtkdial.c \
|
|
examples/helloworld/Makefile \
|
|
examples/helloworld/helloworld.c \
|
|
examples/helloworld2/Makefile \
|
|
examples/helloworld2/helloworld2.c \
|
|
examples/scribble-simple/Makefile \
|
|
examples/scribble-simple/scribble-simple.c \
|
|
examples/tictactoe/Makefile \
|
|
examples/tictactoe/tictactoe.c \
|
|
examples/tictactoe/ttt_test.c \
|
|
examples/buttons/Makefile \
|
|
examples/buttons/info.xpm \
|
|
examples/buttons/buttons.c
|
|
|
|
|
|
m4datadir = $(datadir)/aclocal
|
|
m4data_DATA = gtk.m4
|
|
|
|
.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"`
|