-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathMakefile.am
41 lines (32 loc) · 888 Bytes
/
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
SUBDIRS = src
ACLOCAL_AMFLAGS = -I m4
if KEEP_DLLS
ADDITIONAL_MAKE_DIST_OPTIONS = --exclude=".svn"
else
ADDITIONAL_MAKE_DIST_OPTIONS = --exclude=".svn" --exclude="*.dll"
endif
am__tar = @am__tar@ $(ADDITIONAL_MAKE_DIST_OPTIONS)
pkgconfigdir = $(libdir)/pkgconfig
pkgconfig_DATA = codeblocks.pc
EXTRA_DIST = bootstrap \
codeblocks.spec \
codeblocks.plist \
BUGS \
BUILD \
COMPILERS \
$(srcdir)/update* \
ChangeLog.xsl \
debian
clean-zipfiles:
find . -name "*.zip" | xargs rm -f
clean-bin:
find . -name "*.la" | xargs rm -f
rm -f src/src/codeblocks
all-local:
if HAVE_WX29
cp $(top_srcdir)/debian/codeblocks-headers.install.wx30 $(top_srcdir)/debian/codeblocks-headers.install
else
cp $(top_srcdir)/debian/codeblocks-headers.install.wx28 $(top_srcdir)/debian/codeblocks-headers.install
endif
clean-local:
rm -f $(top_srcdir)/debian/codeblocks-headers.install