diff options
| author | Jelmer Vernooij <jelmer@samba.org> | 2008-02-27 13:17:08 +0100 |
|---|---|---|
| committer | Jelmer Vernooij <jelmer@samba.org> | 2008-02-27 13:17:08 +0100 |
| commit | e20f1bb6dba342fcc91d3fcf28d64c7d5fd39a38 (patch) | |
| tree | 0daf321bd175d97b6813222002f1ebc9160efb42 /source4/lib/replace/Makefile.in | |
| parent | 39eb63039163cf7625edf5c0a33112a0659c3eca (diff) | |
| parent | c9009b9876e14ce9bd9e6941a8344e1f5e47dd21 (diff) | |
| download | samba-e20f1bb6dba342fcc91d3fcf28d64c7d5fd39a38.tar.gz samba-e20f1bb6dba342fcc91d3fcf28d64c7d5fd39a38.tar.xz samba-e20f1bb6dba342fcc91d3fcf28d64c7d5fd39a38.zip | |
Merge branch 'v4-0-test' of ssh://git.samba.org/data/git/samba into v4-0-gmake-simple
(This used to be commit a9fe1b785dd59acbfab4eb90256e7a0cb0f4da6e)
Diffstat (limited to 'source4/lib/replace/Makefile.in')
| -rw-r--r-- | source4/lib/replace/Makefile.in | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/source4/lib/replace/Makefile.in b/source4/lib/replace/Makefile.in index 30f39ac6cb..af9522f3a6 100644 --- a/source4/lib/replace/Makefile.in +++ b/source4/lib/replace/Makefile.in @@ -10,6 +10,7 @@ VPATH = @libreplacedir@ srcdir = @srcdir@ builddir = @builddir@ INSTALL = @INSTALL@ +LIBS = @LIBS@ .PHONY: test all showflags install installcheck clean distclean realdistclean @@ -25,6 +26,7 @@ showflags: @echo ' CC = $(CC)' @echo ' CFLAGS = $(CFLAGS)' @echo ' LDFLAGS= $(LDFLAGS)' + @echo ' LIBS = $(LIBS)' install: all mkdir -p $(libdir) @@ -41,7 +43,7 @@ installcheck: install test TEST_OBJS = test/testsuite.o test/os2_delete.o test/strptime.o testsuite: libreplace.a $(TEST_OBJS) - $(CC) -o testsuite $(TEST_OBJS) -L. -lreplace $(LDFLAGS) + $(CC) -o testsuite $(TEST_OBJS) -L. -lreplace $(LDFLAGS) $(LIBS) .c.o: @echo Compiling $*.c |
