* Makefile.in (CYGWIN_LIB): Variable pointing to libcygwin.a in

the parallel cygwin dir.
	(cygserver.exe): Depend on and link against $CYGWIN_LIB.
This commit is contained in:
Corinna Vinschen 2003-11-26 20:05:09 +00:00
parent 0a707c79e9
commit a2acbfb14e
2 changed files with 9 additions and 1 deletions

View File

@ -1,3 +1,9 @@
2003-11-26 Corinna Vinschen <corinna@vinschen.de>
* Makefile.in (CYGWIN_LIB): Variable pointing to libcygwin.a in
the parallel cygwin dir.
(cygserver.exe): Depend on and link against $CYGWIN_LIB.
2003-11-25 Christopher Faylor <cgf@redhat.com>
* Makefile.in (CXXFLAGS): Remove duplicate options handled in

View File

@ -46,6 +46,8 @@ LIBOBJS:=${patsubst %.o,lib%.o,$(OBJS)}
CYGWIN_OBJS:=$(cygwin_build)/smallprint.o $(cygwin_build)/version.o \
$(cygwin_build)/wincap.o
CYGWIN_LIB:=$(cygwin_build)/libcygwin.a
all: cygserver.exe
install: all $(updir1)/mkinstalldirs cygserver.conf cygserver-config README
@ -66,7 +68,7 @@ libclean:
fullclean: clean libclean
cygserver.exe: $(OBJS) $(CYGWIN_OBJS)
cygserver.exe: $(OBJS) $(CYGWIN_OBJS) $(CYGWIN_LIB)
$(CXX) -o $@ $^
$(cygwin_build)/%.o: $(cygwin_source)/%.cc