-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathMakefile.am
52 lines (38 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
44
45
46
47
48
49
50
51
## Makefile.am for gtk+extra
ACLOCAL_AMFLAGS = -I m4
if ENABLE_GLADE
GLADE_SUBDIR = glade
endif
SRC_SUBDIRS = gtksheet $(GLADE_SUBDIR)
SUBDIRS = $(SRC_SUBDIRS) docs
# require automake 1.7
#AUTOMAKE_OPTIONS = 1.7
EXTRA_DIST = \
TODO \
gtksheet-3.0.m4 \
makecopyright \
gtksheet-3.0.spec
pkgconfigdir = $(libdir)/pkgconfig
pkgconfig_DATA= gtksheet-3.0.pc
.PHONY: files release sanity snapshot
files:
@files=`ls $(DISTFILES) 2> /dev/null `; for p in $$files; do \
echo $$p; \
done
@for subdir in $(SUBDIRS); do \
files=`cd $$subdir; $(MAKE) files | grep -v "make\[[1-9]\]"`; \
for file in $$files; do \
echo $$subdir/$$file; \
done; \
done
release:
rm -rf .deps */.deps
$(MAKE) distcheck
sanity:
./sanity_check $(VERSION)
snapshot:
$(MAKE) dist distdir=$(PACKAGE)-`date +"%y%m%d"`
ChangeLog.cvs:
cvs log | perl mkchlog > ChangeLog.cvs
DISTCHECK_CONFIGURE_FLAGS = --enable-gtk-doc --enable-man --disable-rebuilds
#DISTCHECK_CONFIGURE_FLAGS = --enable-gtk-doc --enable-man --disable-rebuilds