Cygwin: Drop cygwin version.o from cygserver

The data it contains isn't referenced since 9e9bc3a4.
This commit is contained in:
Jon Turney 2020-10-12 16:50:18 +01:00
parent 161cd505e5
commit b5bc608b32
No known key found for this signature in database
GPG Key ID: C7C86F0370285C81
1 changed files with 1 additions and 3 deletions

View File

@ -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: