File: Makefile.cvs

package info (click to toggle)
pcsc-cyberjack 3.99.5final.sp09-2
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 5,904 kB
  • sloc: cpp: 20,089; sh: 11,276; ansic: 5,550; xml: 1,681; makefile: 316
file content (84 lines) | stat: -rw-r--r-- 1,838 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84

#MY_CFLAGS=-W -pedantic -std=c99 -ggdb -Wall -O -ggdb
MY_CFLAGS=-ggdb -Wall


default: all

cvsclean::
	rm -f `find . -name \*~`
	rm -f `find . -name Makefile`
	rm -f `find . -name Makefile.in`
	rm -rf `find . -name .libs`
	rm -Rf apidoc
	rm -f INSTALL
	rm -f aclocal.m4
	rm -rf autom4te.cache/
	rm -f config.guess
	rm -f config.h.in
	rm -f config.sub
	rm -f configure
	rm -f compile
	rm -f debian/autoreconf.after
	rm -f debian/autoreconf.before
	rm -f depcomp
	rm -f ltmain.sh
	rm -f m4/libtool.m4
	rm -f m4/ltoptions.m4
	rm -f m4/ltversion.m4
	rm -f m4/lt~obsolete.m4
	rm -f debian/files
	rm -f debian/libifd-cyberjack6.debhelper.log
	rm -f debian/libifd-cyberjack6.postinst.debhelper
	rm -f debian/libifd-cyberjack6.postrm.debhelper
	rm -f debian/libifd-cyberjack6.preinst.debhelper
	rm -f debian/libifd-cyberjack6.substvars
	rm -rf debian/libifd-cyberjack6/
	rm -rf debian/tmp/
	rm -f config.h
	rm -f config.log
	rm -f config.status
	rm -f debian/fxcyberjack.debhelper.log
	rm -f debian/fxcyberjack.substvars
	rm -rf debian/fxcyberjack/
	rm -f ifd-cyberjack.spec
	rm -f ifd/Info.plist
	rm -f libcyberjack/libdialog/libtest
	rm -f libcyberjack/libtest
	rm -f libtool
	rm -f stamp-h1

macall:
	glibtoolize -f --automake --copy
	aclocal -I ./m4
	autoheader
	automake --add-missing --copy -i
	autoconf

all:
	libtoolize -f --automake --copy
	aclocal -I ./m4
	autoheader
	automake --add-missing --copy
	autoconf

mp:
	libtoolize -f --automake --copy
	aclocal -I ./m4
	autoheader
	automake --add-missing --foreign --copy
	autoconf
	CFLAGS="$(MY_CFLAGS)" CXXFLAGS="-ggdb -Wall" ./configure --disable-static

clang:
	libtoolize -f --automake --copy
	aclocal -I ./m4
	autoheader
	automake --add-missing --foreign --copy
	autoconf
	CFLAGS="$(MY_CFLAGS)" CXXFLAGS="-ggdb -Wall" \
	  CC=clang \
	  CXX=clang \
	  ./configure --disable-static