blob: 18afb93a599deb0b7f4226b38f0d99fa0e58b0d7 (
plain)
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
|
## Process this file with automake to produce Makefile.in
lib_LTLIBRARIES = libglib.la
libglib_la_SOURCES = \
garray.c \
gcache.c \
gerror.c \
ghash.c \
glist.c \
gmem.c \
gprimes.c \
gslist.c \
gtimer.c \
gtree.c \
gutils.c \
gstring.c
include_HEADERS = \
glib.h \
glibconfig.h
libglib_la_LDFLAGS = -version-info 1:0:0
INCLUDES =
noinst_PROGRAMS = testglib
testglib_LDADD = $(top_builddir)/libglib.la
.PHONY: files release
files:
@files=`ls $(DISTFILES) 2> /dev/null `; for p in $$files; do \
echo $$p; \
done
release:
$(MAKE) dist distdir=$(PACKAGE)`date +"%y%m%d"`
|