File: Makefile.am

package info (click to toggle)
galvani 0.39-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,940 kB
  • sloc: cpp: 7,622; makefile: 76; xml: 31
file content (47 lines) | stat: -rw-r--r-- 740 bytes parent folder | download | duplicates (3)
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
38
39
40
41
42
43
44
45
46
47
## Process this file with automake to produce Makefile.in
## Created by Anjuta

SUBDIRS = src po

dist_doc_DATA = \
	README \
	AUTHORS \
	ChangeLog


#INTLTOOL_FILES = intltool-extract.in \
	intltool-merge.in \
	intltool-update.in
	
ACLOCAL_AMFLAGS = --install -I m4

#EXTRA_DIST = \
	$(INTLTOOL_FILES)

DISTCLEANFILES = intltool-extract \
	intltool-merge \
	intltool-update \
	po/.intltool-merge-cache


# Remove doc directory on uninstall
uninstall-local:
	-rm -r $(docdir)


AM_LDFLAGS = -Wl,-z,relro 

AM_CPPFLAGS = -Wdate-time \
	-D_FORTIFY_SOURCE=2 

AM_CFLAGS = -g \
	-O2 \
	-fstack-protector-strong \
	-Wformat \
	-Werror=format-security 

AM_CXXFLAGS = -g \
	-O2 \
	-fstack-protector-strong \
	-Wformat \
	-Werror=format-security