[go: up one dir, main page]

File: Makefile.am

package info (click to toggle)
siril 0.9.10-2
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 23,168 kB
  • sloc: ansic: 43,770; cpp: 6,893; sh: 2,958; makefile: 365; xml: 185
file content (37 lines) | stat: -rw-r--r-- 1,210 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
## Process this file with automake to produce Makefile.in

export CC CFLAGS CPPFLAGS

SUBDIRS = deps/kplot po src

# set language of the scripts to be installed (en or fr)
SCRIPT_LANG = en

install-data-local:
	@$(NORMAL_INSTALL)
	if test -d $(srcdir)/pixmaps; then \
		$(mkinstalldirs) $(DESTDIR)$(pkgdatadir)/pixmaps; \
		for pixmap in $(srcdir)/pixmaps/*; do \
			if test -f $$pixmap; then \
				$(INSTALL_DATA) $$pixmap $(DESTDIR)$(pkgdatadir)/pixmaps; \
			fi \
		done \
	fi
	$(INSTALL_DATA) src/gui/siril3.glade $(DESTDIR)$(pkgdatadir)
	$(INSTALL_DATA) src/gui/gtk_old.css $(DESTDIR)$(pkgdatadir)
	$(INSTALL_DATA) src/gui/gtk.css $(DESTDIR)$(pkgdatadir)
	$(mkinstalldirs) $(DESTDIR)$(docdir)
	$(INSTALL_DATA) AUTHORS $(DESTDIR)$(docdir)
	$(mkinstalldirs) $(DESTDIR)$(mandir)/man1
	$(INSTALL_DATA) siril.1.gz $(DESTDIR)$(mandir)/man1
	$(mkinstalldirs) $(DESTDIR)$(pkgdatadir)/scripts/
	for script in $(srcdir)/scripts/*; do \
		$(INSTALL_DATA) $$script $(DESTDIR)$(pkgdatadir)/scripts; \
	done
	for script in $(srcdir)/3rdparty/scripts/$(SCRIPT_LANG)/*; do \
		$(INSTALL_DATA) $$script $(DESTDIR)$(pkgdatadir)/scripts; \
	done

ACLOCAL_AMFLAGS = -I m4
EXTRA_DIST = config.rpath
AUTOMAKE_OPTIONS = foreign