mirror of https://github.com/GNOME/gimp.git
29 lines
427 B
Makefile
29 lines
427 B
Makefile
## Process this file with automake to produce Makefile.in
|
|
|
|
lib_LIBRARIES = libgpc.a
|
|
|
|
libgpc_a_SOURCES = \
|
|
gpc.c \
|
|
gpc.h
|
|
|
|
INCLUDES = \
|
|
-I$(top_srcdir) \
|
|
$(GTK_CFLAGS) \
|
|
-I$(includedir)
|
|
|
|
LDADD = \
|
|
$(top_builddir)/libgimp/libgimp.la \
|
|
$(GTK_LIBS) \
|
|
$(INTLLIBS)
|
|
|
|
EXTRA_DIST = gpc.3 gpc.man
|
|
|
|
man_MANS = gpc.3
|
|
|
|
.PHONY: files
|
|
|
|
files:
|
|
@files=`ls $(DISTFILES) 2> /dev/null`; for p in $$files; do \
|
|
echo $$p; \
|
|
done
|