Files
wmaker/wrlib/Makefile.am
T

73 lines
1.1 KiB
Makefile
Raw Normal View History

1998-09-29 22:36:29 +00:00
## automake input file for wrlib
AUTOMAKE_OPTIONS = no-dependencies
1999-01-06 15:22:33 +00:00
lib_LTLIBRARIES = libwraster.la
2001-04-21 07:12:21 +00:00
libwraster_la_LDFLAGS = -version-info 4:0:2
1998-09-29 22:36:29 +00:00
1999-01-25 19:06:50 +00:00
bin_SCRIPTS = get-wraster-flags
1998-09-29 22:36:29 +00:00
2000-02-27 19:51:30 +00:00
noinst_PROGRAMS = testgrad testdraw view testrot
1999-01-25 19:06:50 +00:00
EXTRA_DIST = test.png tile.xpm ballot_box.xpm
1998-09-29 22:36:29 +00:00
include_HEADERS = wraster.h
1999-01-06 15:22:33 +00:00
libwraster_la_SOURCES = \
LookupCmap.c \
StdCmap.c \
StdCmap.h \
CrCmap.c \
DelCmap.c \
CmapAlloc.c \
2001-02-18 00:41:22 +00:00
wrasterP.h \
1998-09-29 22:36:29 +00:00
raster.c \
draw.c \
color.c \
load.c \
1998-10-21 14:43:47 +00:00
save.c \
1998-09-29 22:36:29 +00:00
gradient.c \
xpixmap.c \
convert.c \
context.c \
misc.c \
scale.c \
2000-02-27 19:51:30 +00:00
rotate.c \
1998-09-29 22:36:29 +00:00
convolve.c \
nxpm.c \
xpm.c \
xutil.c \
ppm.c \
png.c \
jpeg.c \
tiff.c \
gif.c
2000-04-09 23:55:46 +00:00
INCLUDES = $(DFLAGS) @HEADER_SEARCH_PATH@
1998-09-29 22:36:29 +00:00
LIBLIST = $(top_builddir)/wrlib/libwraster.la
1998-11-03 12:53:26 +00:00
1998-09-29 22:36:29 +00:00
view_SOURCES= view.c
1998-11-03 12:53:26 +00:00
view_LDADD = $(LIBLIST)
1998-09-29 22:36:29 +00:00
testgrad_SOURCES = testgrad.c
1998-11-03 12:53:26 +00:00
testgrad_LDADD = $(LIBLIST)
1998-09-29 22:36:29 +00:00
2000-02-27 19:51:30 +00:00
testrot_SOURCES = testrot.c
testrot_LDADD = $(LIBLIST)
1998-09-29 22:36:29 +00:00
testdraw_SOURCES = testdraw.c
1998-11-03 12:53:26 +00:00
testdraw_LDADD = $(LIBLIST)
1998-09-29 22:36:29 +00:00
libwraster_la_LIBADD = @ALLOCA@ @LIBRARY_SEARCH_PATH@ @GFXLIBS@ @XLIBS@ -lm
1998-09-29 22:36:29 +00:00