Thu May 7 05:14:19 1998 Tim Janik <timj@gtk.org> * gtk-config.in (--libs): postfix -lg* libraries with LT_RELEASE. * ltmain.sh: added a new commandline flag -postfix similar to -release, but will immediately change the library name. * gdk/Makefile.am: * gtk/Makefile.am: specify -postfix and -version-info * configure.in: version bump to 1.1.0. added GTK_INTERFACE_AGE and GTK_BINARY_AGE. calculate LT_* variables for libtool.
44 lines
749 B
Makefile
44 lines
749 B
Makefile
## Process this file with automake to produce Makefile.in
|
|
|
|
configincludedir = $(pkglibdir)/include
|
|
|
|
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 \
|
|
gstring.c \
|
|
gscanner.c \
|
|
gutils.c
|
|
|
|
include_HEADERS = \
|
|
glib.h
|
|
|
|
configinclude_DATA = \
|
|
glibconfig.h
|
|
|
|
libglib_la_LDFLAGS = -postfix $(LT_RELEASE) -version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE)
|
|
|
|
INCLUDES = -I$(top_srcdir)
|
|
|
|
noinst_PROGRAMS = testglib
|
|
testglib_LDADD = 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"`
|