ftx/Makefile.am re/Makefile.am scripts/Makefile.am

2004-10-08 Kevin Cozens <kcozens@cvs.gimp.org>

    * ftx/Makefile.am
    * re/Makefile.am
    * scripts/Makefile.am
    * scripts/images/Makefile.am
    * tiny-fu/Makefile.am
    * tinyscheme/Makefile.am: Cleaned up files, added EXTRA_DIST with
    list of files to include in a distribution. Fixed typo in filename
    in the re/Makefile.am file.
This commit is contained in:
Kevin Cozens 2004-10-09 04:23:59 +00:00 committed by Kevin Cozens
parent 4ba85ba3fb
commit af2eb68c70
3 changed files with 41 additions and 34 deletions

View file

@ -1,12 +1,16 @@
## Process this file with automake to produce Makefile.in
AM_CFLAGS = -DUSE_INTERFACE=1
INCLUDES = \
-I$(top_srcdir) \
$(GIMP_CFLAGS) \
-I$(includedir)
AM_CFLAGS = \
-DUSE_INTERFACE=1 \
-I$(top_srcdir) \
$(GIMP_CFLAGS)
noinst_LIBRARIES = libftx.a
libftx_a_SOURCES = ftx.c ftx.h
EXTRA_DIST = \
LICENSE \
README \
ftx-functions.txt \
listhome.scm

View file

@ -1,21 +1,13 @@
## Process this file with automake to produce Makefile.in
#if PLATFORM_WIN32
#no_undefined = -no-undefined
#endif
#
#if OS_WIN32
#mwindows = -mwindows
#endif
SCHEME_H_DIR=../tinyscheme
AM_CFLAGS = -DUSE_INTERFACE=1 -I $(SCHEME_H_DIR)
AM_CFLAGS = \
-DUSE_INTERFACE=1 \
-I$(top_srcdir)
noinst_LIBRARIES = libre.a
libre_a_SOURCES = \
ccass.h \
cclass.h \
cname.h \
debug.c \
re.c \
@ -28,3 +20,9 @@ libre_a_SOURCES = \
regfree.c \
split.c \
utils.h
EXTRA_DIST = \
COPYRIGHT \
README \
README.1st \
WHATSNEW

View file

@ -1,22 +1,27 @@
## Process this file with automake to produce Makefile.in
AM_CPPFLAGS = \
-DSTANDALONE=0 \
-DUSE_INTERFACE=1 \
-DUSE_MATH=1 \
-DUSE_ASCII_NAMES=0 \
-DUSE_STRLWR=0 \
-DUSE_STRCASECMP=1
INCLUDES = \
-I$(top_srcdir) \
$(GIMP_CFLAGS) \
-I$(includedir)
AM_CFLAGS = \
-DSTANDALONE=0 \
-DUSE_INTERFACE=1 \
-DUSE_MATH=1 \
-DUSE_ASCII_NAMES=0 \
-DUSE_STRLWR=0 \
-DUSE_STRCASECMP=1 \
-I$(top_srcdir) \
$(GIMP_CFLAGS)
noinst_LIBRARIES = libtinyscheme.a
libtinyscheme_a_SOURCES = \
scheme.c \
opdefines.h \
scheme-private.h \
scheme.h
scheme.c \
opdefines.h \
scheme-private.h \
scheme.h
EXTRA_DIST = \
BUILDING \
CHANGES \
COPYING \
hack.txt \
Manual.txt \
MiniSCHEMETribute.txt