Changeset 4523
- Timestamp:
- 02/07/07 23:54:48 (2 years ago)
- Files:
-
- libwired/trunk/Makefile.in (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
libwired/trunk/Makefile.in
r4511 r4523 5 5 rundir = @rundir@ 6 6 headerdir = $(rundir)/include/wired 7 empty = 7 8 8 9 WI_VERSION = @WI_VERSION@ … … 11 12 DISTFILES = LICENSE Makefile Makefile.in config.guess config.h.in \ 12 13 config.status config.sub configure configure.in install-sh libwired 13 VPATH = $(top_srcdir)/libwired:$(top_srcdir)/libwired/base:$(top_srcdir)/libwired/collections:$(top_srcdir)/libwired/data:$(top_srcdir)/libwired/file:$(top_srcdir)/libwired/net:$(top_srcdir)/libwired/thread:$(top_srcdir)/libwired/system 14 SOURCEDIRS = libwired 14 15 15 LIBWIREDOBJECTS = $(addprefix $(objdir)/libwired/,$(notdir $(patsubst %.c,%.o,$(shell find $(top_srcdir)/libwired -name "*.c")))) 16 HEADERS = $(addprefix $(headerdir)/,$(notdir $(shell find $(top_srcdir)/libwired -name "*.h"))) 16 VPATH = $(subst $(empty) $(empty),:,$(shell find $(SOURCEDIRS) -name ".*" -prune -o -type d -print)) 17 LIBWIREDOBJECTS = $(addprefix $(objdir)/libwired/,$(notdir $(patsubst %.c,%.o,$(shell find libwired -name "*.c")))) 18 HEADERS = $(addprefix $(headerdir)/,$(notdir $(shell find libwired -name "*.h"))) 17 19 18 20 DEFS = @DEFS@ … … 20 22 CFLAGS = @CFLAGS@ 21 23 CPPFLAGS = @CPPFLAGS@ 22 LDFLAGS = @LDFLAGS@ 24 LDFLAGS = -L$(rundir)/lib @LDFLAGS@ 25 LIBS = -lwired @LIBS@ 23 26 INCLUDES = -I$(top_srcdir) -I$(rundir)/include 24 27 … … 28 31 LINK = $(CC) $(CFLAGS) $(LDFLAGS) -o $@ 29 32 ARCHIVE = ar rcs $@ 33 34 .PHONY: all dist clean distclean scmclean 30 35 31 36 ifeq ($(WI_MAINTAINER), 1)
