mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-11-10 03:16:17 +01:00
49ae057a97
Fri Jul 10 06:33:43 1998 Tim Janik <timj@gtk.org> * glib.h: * gutils.h: added a bunch of utility/wrapper functions: g_basename(), g_getcwd(), g_get_user_name(), g_get_real_name(), g_get_home_dir(), g_get_tmp_dir(), g_get_prgname() and g_set_prgname(). * gutils.c: removed all g_str* functions. * gstrfuncs.c: moved the bunch g_str* functions from gutils.c in this place. this file shall never include <stdlib.h> to avoid clashes for some of the g_str* functions on some OSes.
57 lines
933 B
Makefile
57 lines
933 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 \
|
|
gstrfuncs.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"`
|