diff options
author | Jon Turney <jon.turney@dronecode.org.uk> | 2020-10-12 16:50:18 +0100 |
---|---|---|
committer | Jon Turney <jon.turney@dronecode.org.uk> | 2020-10-21 17:10:50 +0100 |
commit | b5bc608b3265eba10e78e54cc2c3f51929c61287 (patch) | |
tree | 9c1247325ab828ffb028d86a1eef8fa7bf58e034 | |
parent | 161cd505e5f55de43aba3ad672bc647d2786f3a1 (diff) | |
download | cygnal-b5bc608b3265eba10e78e54cc2c3f51929c61287.tar.gz cygnal-b5bc608b3265eba10e78e54cc2c3f51929c61287.tar.bz2 cygnal-b5bc608b3265eba10e78e54cc2c3f51929c61287.zip |
Cygwin: Drop cygwin version.o from cygserver
The data it contains isn't referenced since 9e9bc3a4.
-rw-r--r-- | winsup/cygserver/Makefile.in | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/winsup/cygserver/Makefile.in b/winsup/cygserver/Makefile.in index e360d8fd0..7b250dd68 100644 --- a/winsup/cygserver/Makefile.in +++ b/winsup/cygserver/Makefile.in @@ -41,8 +41,6 @@ OBJS:= cygserver.o client.o process.o msg.o sem.o shm.o threaded_queue.o \ sysv_msg.o sysv_sem.o sysv_shm.o setpwd.o pwdgrp.o LIBOBJS:=${patsubst %.o,lib%.o,$(OBJS)} -CYGWIN_OBJS:=$(cygwin_build)/version.o - CYGWIN_LIB:=$(cygwin_build)/libcygwin.a all: cygserver.exe @@ -62,7 +60,7 @@ libclean: fullclean: clean libclean -cygserver.exe: $(CYGWIN_LIB) $(OBJS) $(CYGWIN_OBJS) +cygserver.exe: $(CYGWIN_LIB) $(OBJS) $(CXX) -o $@ ${wordlist 2,999,$^} -static -static-libgcc -B$(cygwin_build) -lntdll $(cygwin_build)/%.o: |