mirror of https://github.com/GNOME/gimp.git
68 lines
1.2 KiB
Makefile
68 lines
1.2 KiB
Makefile
## Process this file with automake to produce Makefile.in
|
|
|
|
SUBDIRS = po intl @GCG_SUBDIRS@ libgimp app plug-ins modules data @GIMPDOCS@
|
|
|
|
bin_SCRIPTS = gimptool
|
|
|
|
EXTRA_DIST = \
|
|
README.i18n \
|
|
ChangeLog.pre-1-0 \
|
|
MAINTAINERS \
|
|
TODO \
|
|
gtkrc \
|
|
gimp_logo.ppm \
|
|
gimp_splash.ppm \
|
|
gimp1_1_splash.ppm \
|
|
rmshm \
|
|
user_install \
|
|
gimp_tips.txt \
|
|
ps-menurc \
|
|
gimp.1 \
|
|
gimptool.1 \
|
|
gtkrc.forest2 \
|
|
gimp.m4
|
|
|
|
gimpdata_DATA = \
|
|
gimprc \
|
|
gimprc_user \
|
|
gtkrc \
|
|
gimp_logo.ppm \
|
|
gimp_splash.ppm \
|
|
gimp1_1_splash.ppm \
|
|
gimp_tips.txt \
|
|
ps-menurc \
|
|
gtkrc.forest2
|
|
|
|
gimpdata_SCRIPTS = user_install
|
|
|
|
man_MANS=gimp.1 gimptool.1
|
|
|
|
m4datadir = $(datadir)/aclocal
|
|
m4data_DATA = gimp.m4
|
|
|
|
scriptdata =
|
|
|
|
.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 gimp.prj $$files
|
|
|
|
checkin: populate
|
|
@echo "checking in project"
|
|
@prcs checkin
|
|
|
|
release:
|
|
$(MAKE) dist distdir=$(PACKAGE)`date +"%y%m%d"`
|