libanjuta: Move autogen functions from project-wizard to libanjuta
[anjuta.git] / plugins / project-wizard / Makefile.am
blob7e45cf6de84ddddce34bac4fb362fadc0bdfeb85
2 SUBDIRS = templates
4 # Plugin glade file
5 wizard_gladedir = $(anjuta_glade_dir)
6 wizard_glade_DATA = anjuta-project-wizard.ui \
7         applogo.png \
8         appwizard.png
10 # Plugin UI file
11 wizard_uidir = $(anjuta_ui_dir)
12 wizard_ui_DATA =  
14 # Plugin pixmaps
15 wizard_pixmapsdir = $(anjuta_image_dir)
16 wizard_pixmaps_DATA = \
17         anjuta-project-wizard-plugin.svg \
18         anjuta-project-wizard-plugin-48.png
20 # Plugin Icon file
21 plugin_in_files = anjuta-project-wizard.plugin.in
22 %.plugin: %.plugin.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*po) ; $(INTLTOOL_MERGE) $(top_srcdir)/po $< $@ -d -u -c $(top_builddir)/po/.intltool-merge-cache
24 wizard_plugindir = $(anjuta_plugin_dir)
25 wizard_plugin_DATA = $(plugin_in_files:.plugin.in=.plugin)
27 plugindir = $(anjuta_plugin_dir)
28 plugin_LTLIBRARIES = libanjuta-project-wizard.la
30 AM_CPPFLAGS = \
31         $(WARN_CFLAGS) \
32         $(DEPRECATED_FLAGS) \
33         $(LIBANJUTA_CFLAGS) \
34         -DANJUTA_BINDIR=\"$(bindir)\" \
35         -DANJUTA_LIBDIR=\"$(libdir)\" \
36         -DG_LOG_DOMAIN=\"libanjuta-project-wizard\"
38 libanjuta_project_wizard_la_LDFLAGS = $(ANJUTA_PLUGIN_LDFLAGS)
40 libanjuta_project_wizard_la_LIBADD = \
41         $(LIBANJUTA_LIBS)
43 libanjuta_project_wizard_la_SOURCES= \
44         plugin.c \
45         plugin.h \
46         druid.c \
47         druid.h \
48         header.c \
49         header.h \
50         property.c \
51         property.h \
52         file.c \
53         file.h \
54         action.c \
55         action.h \
56         parser.c \
57         parser.h \
58         install.c \
59         install.h \
60         tar.c \
61         tar.h
63 EXTRA_DIST = \
64         $(plugin_in_files) \
65         $(wizard_pixmaps_DATA) \
66         $(wizard_plugin_DATA) \
67         $(wizard_glade_DATA) \
68         $(wizard_ui_DATA)
70 ## templates_dir = $(datadir)/anjuta/projects
71 ## 
72 ## install-data-local:
73 ##      mkdir -p $(DESTDIR)$(templates_dir)
74 ##      $(INSTALL_DATA) $(srcdir)/templates $(DESTDIR)$(templates_dir)
76 ## uninstall-local:
77 ##      @rm -fv $(*:%=$(templates_dir)/%)
78 ##      -if test -d $(templates_dir); then rmdir $(templates_dir); fi
80 -include $(top_srcdir)/git.mk