* Makefile.am: added MAINTAINERS to EXTRA_DIST * configure.in: nicer -Wall, -ansi, etc. adding for CFLAGS with gcc * libgimp/parasite*.h * libgimp/gimpintl.h * app/Makefile.am * po/Makefile.in.in * configure.in: portablity, locale patch (gimp-joke-981028-0) * configure.in * plug-ins/Makefile.am: added lic, mapcolor, and xbm plug-ins * app/app_procs.c * app/menus.c: cosmetic message fixes * libgimp/parasite.c: use %p to print pointers * plug-ins/dbbrowser/dbbrowser_utils.[ch]: changes for new clist stuff * plug-ins/script-fu/script-fu-enums.h * plug-ins/script-fu/script-fu-scripts.c * plug-ins/script-fu/script-fu.c * plug-ins/script-fu/scripts/carved-logo.scm * plug-ins/script-fu/scripts/chrome-it.scm * plug-ins/script-fu/scripts/crystal-logo.scm * plug-ins/script-fu/scripts/neon-logo.scm * plug-ins/script-fu/scripts/sota-chrome-logo.scm: applied gimp-ruth-981103-0, adds a filesel to script-fu and SF-FILENAME param type. Make some scripts use this. -Yosh
65 lines
1.2 KiB
Makefile
65 lines
1.2 KiB
Makefile
## Process this file with automake to produce Makefile.in
|
|
|
|
SUBDIRS = po intl libgimp plug-ins app data
|
|
|
|
bin_SCRIPTS = gimptool
|
|
|
|
EXTRA_DIST = \
|
|
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"`
|