diff options
author | Perberos <[email protected]> | 2011-12-01 22:07:25 -0300 |
---|---|---|
committer | Perberos <[email protected]> | 2011-12-01 22:07:25 -0300 |
commit | d00aab12b6ace2c3dda3efbc2aaa2646d78a9099 (patch) | |
tree | 8b0ca776e9234f7eabf3446f12df9a81abd466d0 /mate-about/Makefile.am | |
download | mate-desktop-d00aab12b6ace2c3dda3efbc2aaa2646d78a9099.tar.bz2 mate-desktop-d00aab12b6ace2c3dda3efbc2aaa2646d78a9099.tar.xz |
moving from https://github.com/perberos/mate-desktop-environment
Diffstat (limited to 'mate-about/Makefile.am')
-rw-r--r-- | mate-about/Makefile.am | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/mate-about/Makefile.am b/mate-about/Makefile.am new file mode 100644 index 0000000..d56ac71 --- /dev/null +++ b/mate-about/Makefile.am @@ -0,0 +1,24 @@ +bin_PROGRAMS = mate-about +mate_about_SOURCES = mate-about.c mate-about.h +mate_about_CFLAGS = $(MATE_ABOUT_CFLAGS) $(UNIQUE_CFLAGS) +mate_about_LDADD = $(MATE_ABOUT_LIBS) $(UNIQUE_LIBS) + +INCLUDES = \ + -I$(top_srcdir) \ + $(MATE_ABOUT_CFLAGS) \ + -DLOCALE_DIR=\"$(datadir)/locale\" \ + -DPIXMAPS_DIR=\"$(datadir)/pixmaps/\" + +@INTLTOOL_DESKTOP_RULE@ + +pixmapdir = $(datadir)/pixmaps +pixmap_DATA = nyan-cat.gif + +desktopdir = $(datadir)/applications +desktop_in_files = mate-about.desktop.in +desktop_DATA = $(desktop_in_files:.desktop.in=.desktop) + +CLEANFILES = mate-about.desktop mate-about + +#-include $(top_srcdir)/git.mk + |