forked from google/google-authenticator-libpam
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile.am
43 lines (29 loc) · 1.06 KB
/
Makefile.am
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
AUTOMAKE_OPTIONS = foreign subdir-objects
ACLOCAL_AMFLAGS = -I build
CFLAGS = `pkg-config --cflags gtk+-3.0 --libs gtk+-3.0 --libs libsecret-1`
CPPFLAGS = -g
bin_PROGRAMS = gauthenticator
dist_man_MANS = man/gauthenticator.1
dist_doc_DATA = README.md
dist_pixmaps_PIXMAPS = pixmaps/gauthenticator.png
dist_desktop_DESKTOP = applications/gauthenticator.desktop
EXTRA_DIST = \
applications/gauthenticator.desktop \
pixmaps/gauthenticator.png
pixmapdir = $(datadir)/pixmaps/
pixmap_DATA = pixmaps/gauthenticator.png
Applicationsdir = $(datadir)/applications
Applications_DATA = applications/gauthenticator.desktop
CORE_SRC = src/base32.h src/base32.c
CORE_SRC += src/hmac.h src/hmac.c
CORE_SRC += src/sha1.h src/sha1.c
gauthenticator_SOURCES = \
src/gauthenticator.c \
$(CORE_SRC)
test: check
super-clean: maintainer-clean
rm -fr aclocal autom4te.cache/ m4 missing libtool config.guess
rm -fr config.lt config.status config.sub configure depcomp
rm -fr libtool install-sh *~ Makefile aclocal.m4 config.h.in ltmain.sh
rm -fr Makefile.in test-driver compile
rm -fr build/*