Changeset 5032
- Timestamp:
- 11/01/07 20:06:27 (10 months ago)
- Files:
-
- libwired/trunk/Makefile.in (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
libwired/trunk/Makefile.in
r5030 r5032 1 1 # Makefile.in 2 2 3 top_srcdir = @top_srcdir@3 abs_top_srcdir = @abs_top_srcdir@ 4 4 datarootdir = @datarootdir@ 5 5 objdir = @objdir@ … … 14 14 config.status config.sub configure configure.in install-sh libwired \ 15 15 test 16 SOURCEDIRS = $( top_srcdir)/libwired $(top_srcdir)/test16 SOURCEDIRS = $(abs_top_srcdir)/libwired $(abs_top_srcdir)/test 17 17 18 18 VPATH = $(subst $(empty) $(empty),:,$(shell find $(SOURCEDIRS) -name ".*" -prune -o -type d -print)) 19 LIBWIREDOBJECTS = $(addprefix $(objdir)/libwired/,$(sort $(notdir $(patsubst %.c,%.o,$(shell find $( top_srcdir)/libwired -name "*.c")))))20 TESTOBJECTS = $(addprefix $(objdir)/libwired/,$(notdir $(patsubst %.c,%.o,$(shell find $( top_srcdir)/test -name "*.c"))))21 TESTSOBJECTS = $(addprefix $(objdir)/libwired/,$(notdir $(patsubst %.c,%.o,$(shell find $( top_srcdir)/test/tests -name "*.c"))))22 HEADERS = $(addprefix $(headerdir)/,$(notdir $(shell find $( top_srcdir)/libwired -name "*.h")))19 LIBWIREDOBJECTS = $(addprefix $(objdir)/libwired/,$(sort $(notdir $(patsubst %.c,%.o,$(shell find $(abs_top_srcdir)/libwired -name "*.c"))))) 20 TESTOBJECTS = $(addprefix $(objdir)/libwired/,$(notdir $(patsubst %.c,%.o,$(shell find $(abs_top_srcdir)/test -name "*.c")))) 21 TESTSOBJECTS = $(addprefix $(objdir)/libwired/,$(notdir $(patsubst %.c,%.o,$(shell find $(abs_top_srcdir)/test/tests -name "*.c")))) 22 HEADERS = $(addprefix $(headerdir)/,$(notdir $(shell find $(abs_top_srcdir)/libwired -name "*.h"))) 23 23 24 24 DEFS = @DEFS@ … … 28 28 LDFLAGS = -L$(rundir)/lib @LDFLAGS@ 29 29 LIBS = -lwired @LIBS@ 30 INCLUDES = -I$( top_srcdir) -I$(rundir)/include30 INCLUDES = -I$(abs_top_srcdir) -I$(rundir)/include 31 31 32 32 COMPILE = $(CC) $(DEFS) $(INCLUDES) $(CPPFLAGS) $(CFLAGS) … … 44 44 45 45 Makefile: Makefile.in config.status 46 $( top_srcdir)/config.status46 $(abs_top_srcdir)/config.status 47 47 48 48 configure: configure.in
