Changeset 5033
- Timestamp:
- 11/01/07 20:06:32 (8 months ago)
- Files:
-
- wired/trunk/Makefile.in (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
wired/trunk/Makefile.in
r5031 r5033 1 1 # Makefile.in 2 2 3 top_srcdir = @top_srcdir@3 abs_top_srcdir = @abs_top_srcdir@ 4 4 datarootdir = @datarootdir@ 5 5 exec_prefix = @exec_prefix@ … … 22 22 SUBDIRS = libwired 23 23 24 WIREDOBJECTS = $(addprefix $(objdir)/wired/,$(notdir $(patsubst %.c,%.o,$(shell find $( top_srcdir)/wired -name "*.c"))))24 WIREDOBJECTS = $(addprefix $(objdir)/wired/,$(notdir $(patsubst %.c,%.o,$(shell find $(abs_top_srcdir)/wired -name "*.c")))) 25 25 26 26 DEFS = @DEFS@ -DWD_ROOT="\"$(fake_prefix)/$(wireddir)\"" … … 30 30 LDFLAGS = -L$(rundir)/libwired/lib @LDFLAGS@ 31 31 LIBS = -lwired @LIBS@ 32 INCLUDES = -I$( top_srcdir) -I$(rundir)/libwired/include32 INCLUDES = -I$(abs_top_srcdir) -I$(rundir)/libwired/include 33 33 34 34 INSTALL = @INSTALL@ … … 70 70 $(LINK) $(WIREDOBJECTS) $(LIBS) 71 71 72 $(rundir)/wiredctl: $( top_srcdir)/wired/wiredctl.in72 $(rundir)/wiredctl: $(abs_top_srcdir)/wired/wiredctl.in 73 73 @test -d $(@D) || mkdir -p $(@D) 74 74 sed -e 's,@wireddir\@,$(fake_prefix)/$(wireddir),g' $< > $@ 75 75 chmod +x $@ 76 76 77 $(rundir)/etc/wired.conf: $( top_srcdir)/wired/wired.conf.in77 $(rundir)/etc/wired.conf: $(abs_top_srcdir)/wired/wired.conf.in 78 78 @test -d $(@D) || mkdir -p $(@D) 79 79 sed -e 's,@WD_USER\@,$(WD_USER),g' -e 's,@WD_GROUP\@,$(WD_GROUP),g' $< > $@ 80 80 81 $(objdir)/wired/%.o: $( top_srcdir)/wired/%.c81 $(objdir)/wired/%.o: $(abs_top_srcdir)/wired/%.c 82 82 @test -d $(@D) || mkdir -p $(@D) 83 83 $(COMPILE) -I$(<D) -c $< -o $@ 84 84 85 $(objdir)/wired/%.d: $( top_srcdir)/wired/%.c85 $(objdir)/wired/%.d: $(abs_top_srcdir)/wired/%.c 86 86 @test -d $(@D) || mkdir -p $(@D) 87 87 ($(DEPEND) $< | sed 's,$*.o,$(@D)/&,g'; echo "$@: $<") > $@ … … 161 161 install-man: 162 162 $(INSTALL) -m 755 -d $(mandir)/man1/ 163 $(INSTALL) -m 644 $( top_srcdir)/man/wiredctl.1 $(mandir)/man1/163 $(INSTALL) -m 644 $(abs_top_srcdir)/man/wiredctl.1 $(mandir)/man1/ 164 164 $(INSTALL) -m 755 -d $(mandir)/man5/ 165 $(INSTALL) -m 644 $( top_srcdir)/man/wired.conf.5 $(mandir)/man5/165 $(INSTALL) -m 644 $(abs_top_srcdir)/man/wired.conf.5 $(mandir)/man5/ 166 166 $(INSTALL) -m 755 -d $(mandir)/man8/ 167 $(INSTALL) -m 644 $( top_srcdir)/man/wired.8 $(mandir)/man8/167 $(INSTALL) -m 644 $(abs_top_srcdir)/man/wired.8 $(mandir)/man8/ 168 168 169 169 dist:
