mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-11-02 07:36:17 +01:00
df9a49ec3c
Fri Jun 12 00:39:28 1998 Josh MacDonald <jmacd@icw.EECS.Berkeley.EDU> * glib.h: add new hash and equal functions g_int_*. complement g_direct_hash with g_direct_equal. * grel.c: new file, GRelations implement tuples of N-N mappings. A comment in glib.h briefly describes the interface. * ghash.c: new function, g_hash_table_size * glib.h: new typedefs, gsize, gssize, gtime. * garray.c: new functions implementing a simplified GArray. This GPtrArray is an array of gpointers and has functions to add and remove elements, much like java.lang.Vector. * garray.c: new functions for the single-byte special case of GArray. The functions g_byte_array* operate on arrays of bytes. Internally, a GArray is used. * testglib.c: tests for g_ptr_array, g_byte_array, and g_relation...
56 lines
917 B
Makefile
56 lines
917 B
Makefile
## Process this file with automake to produce Makefile.in
|
|
|
|
configincludedir = $(pkglibdir)/include
|
|
|
|
bin_SCRIPTS=glib-config
|
|
|
|
EXTRA_DIST = \
|
|
glib.m4
|
|
|
|
lib_LTLIBRARIES = libglib-1.1.la
|
|
|
|
libglib_1_1_la_SOURCES = \
|
|
garray.c \
|
|
gcache.c \
|
|
gcompletion.c \
|
|
gdataset.c \
|
|
gerror.c \
|
|
ghash.c \
|
|
glist.c \
|
|
gmem.c \
|
|
gmessages.c \
|
|
gprimes.c \
|
|
gslist.c \
|
|
gtimer.c \
|
|
gtree.c \
|
|
grel.c \
|
|
gstring.c \
|
|
gscanner.c \
|
|
gutils.c
|
|
|
|
include_HEADERS = \
|
|
glib.h
|
|
|
|
configinclude_DATA = \
|
|
glibconfig.h
|
|
|
|
libglib_1_1_la_LDFLAGS = -version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE)
|
|
|
|
INCLUDES = -I$(top_srcdir)
|
|
|
|
noinst_PROGRAMS = testglib
|
|
testglib_LDADD = libglib-@LT_RELEASE@.la
|
|
|
|
m4datadir = $(datadir)/aclocal
|
|
m4data_DATA = glib.m4
|
|
|
|
.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"`
|