Skip to content
Snippets Groups Projects
Makefile.am 584 B
appsqldir = $(pkgdatadir)/sql

noinst_DATA = manager.conf

appsql_DATA = manager.sql

CLEANFILES = $(noinst_DATA)

EXTRA_DIST = $(noinst_DATA) $(appsql_DATA)

install-data-local:
	$(mkinstalldirs) $(DESTDIR)$(confdir)
	if [ -f $(DESTDIR)$(confdir)/manager.conf ]; then                       \
	    $(INSTALL_DATA) manager.conf $(DESTDIR)$(confdir)/manager.conf.new; \
	else                                                                       \
	    $(INSTALL_DATA) manager.conf $(DESTDIR)$(confdir)/manager.conf;     \
	fi

uninstall-local:
	rm -f $(DESTDIR)$(confdir)/manager.conf