You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
664 B
27 lines
664 B
AUTOMAKE_OPTIONS = foreign |
|
|
|
ACLOCAL_AMFLAGS = -I m4 |
|
|
|
MAINTAINERCLEANFILES = aclocal.m4 config.* compile configure depcomp \ |
|
install-sh missing \ |
|
Makefile.in |
|
|
|
CLEANFILES = e16-keyedit.desktop |
|
|
|
EXTRA_DIST = e16-keyedit.desktop.in |
|
|
|
bin_PROGRAMS = e16keyedit |
|
|
|
e16keyedit_SOURCES = ipc.c menus.c viewer.c e16keyedit.h |
|
|
|
CPPFLAGS = -D DATADIR=\"$(datadir)\" $(GTK_CFLAGS) $(CFLAGS_WARNINGS) |
|
|
|
LDADD = $(GTK_LIBS) $(X_LIBS) -lX11 |
|
|
|
applicationdir = $(datadir)/applications |
|
application_DATA = e16-keyedit.desktop |
|
|
|
e16-keyedit.desktop: $(srcdir)/e16-keyedit.desktop.in Makefile |
|
|
|
e16-keyedit.desktop: |
|
sed -e "s=@e16datadir@=${datadir}=" $(srcdir)/$@.in > $@
|
|
|