gtk2/gdk/Makefile.am

80 lines
1.4 KiB
Makefile
Raw Normal View History

1997-11-24 22:37:52 +00:00
## Process this file with automake to produce Makefile.in
gdkincludedir = $(includedir)/gdk
lib_LTLIBRARIES = libgdk.la
libgdk_la_SOURCES = \
gdk.c \
gdkcc.c \
1997-11-24 22:37:52 +00:00
gdkcolor.c \
gdkcursor.c \
gdkdraw.c \
gdkfont.c \
gdkgc.c \
gdkglobals.c \
gdkimage.c \
gdkinput.c \
gdkinput.h \
gdkinputnone.h \
gdkinputcommon.h\
gdkinputgxi.h \
gdkinputxfree.h \
1997-11-24 22:37:52 +00:00
gdkpixmap.c \
gdkproperty.c \
gdkrectangle.c \
gdkselection.c \
gdkvisual.c \
gdkwindow.c \
gdkxid.c \
gxid_lib.h \
gxid_proto.h \
1997-11-24 22:37:52 +00:00
gxid_lib.c
## this last one is ifdef'd out unless XINPUT_GXI is defined
## It's easier than trying to get automake to handle compiling
## it conditionally
gdkinclude_HEADERS = \
gdk.h \
gdkcursors.h \
gdki18n.h \
1997-11-24 22:37:52 +00:00
gdkkeysyms.h \
gdkprivate.h \
gdktypes.h \
gdkx.h
1998-01-08 20:25:33 +00:00
libgdk_la_LDFLAGS = -version-info 1:0:0 @x_ldflags@
libgdk_la_LIBADD = @x_libs@
1997-11-24 22:37:52 +00:00
INCLUDES = -I$(top_srcdir) -I$(top_srcdir)/glib @x_cflags@
EXTRA_PROGRAMS = gxid
bin_PROGRAMS = @xinput_progs@
gxid_SOURCES = gxid.c
gxid_LDADD = \
@x_ldflags@ \
@x_libs@ \
-lm
BUILT_SOURCES = gdkcursors.h gdkkeysyms.h
EXTRA_DIST = makecursors.awk makekeysyms.awk
1997-11-24 22:37:52 +00:00
gdkcursors.h:
awk -f $(srcdir)/makecursors.awk @x_includes@/X11/cursorfont.h > $@
1997-11-24 22:37:52 +00:00
gdkkeysyms.h:
awk -f $(srcdir)/makekeysyms.awk @x_includes@/X11/keysymdef.h > $@
1997-11-24 22:37:52 +00:00
.PHONY: files
files:
@files=`ls $(DISTFILES) 2> /dev/null `; for p in $$files; do \
echo $$p; \
done
$(DEP_FILES) : $(BUILT_SOURCES)