summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJon Turney <jon.turney@dronecode.org.uk>2020-10-28 15:31:27 +0000
committerJon Turney <jon.turney@dronecode.org.uk>2020-10-30 16:31:08 +0000
commit9517e5f5031c2c11eb0e6fe33068b0025a6b0f49 (patch)
treef7c23ade17344730a2292ff379243fe8c987ef7d
parentff2c8fcfc7114391b070997a67199c009fe19d46 (diff)
downloadcygnal-9517e5f5031c2c11eb0e6fe33068b0025a6b0f49.tar.gz
cygnal-9517e5f5031c2c11eb0e6fe33068b0025a6b0f49.tar.bz2
cygnal-9517e5f5031c2c11eb0e6fe33068b0025a6b0f49.zip
Revert "Cygwin: gendef generates sigfe.s and cygwin.def"
This reverts commit 74a164f1c162645f4389bbd9edb2f89a630853af. Shame we can't use '&:' for a grouped target here, since that requires GNU make 4.3
-rw-r--r--winsup/cygwin/Makefile.in7
1 files changed, 5 insertions, 2 deletions
diff --git a/winsup/cygwin/Makefile.in b/winsup/cygwin/Makefile.in
index f6236d909..cb9924b3a 100644
--- a/winsup/cygwin/Makefile.in
+++ b/winsup/cygwin/Makefile.in
@@ -783,13 +783,16 @@ $(VERSION_OFILES): version.cc
Makefile: ${srcdir}/Makefile.in
/bin/sh ./config.status
-$(DEF_FILE) sigfe.s: gendef $(srcdir)/$(TLSOFFSETS_H) $(DIN_FILE)
- $(word 1,$^) --cpu=${target_cpu} --output-def=$(DEF_FILE) --tlsoffsets=$(word 2,$^) $(wordlist 3,4,$^)
+$(DEF_FILE): gendef $(srcdir)/$(TLSOFFSETS_H) $(DIN_FILE)
+ $(word 1,$^) --cpu=${target_cpu} --output-def=$@ --tlsoffsets=$(word 2,$^) $(wordlist 3,99,$^)
$(srcdir)/$(TLSOFFSETS_H): gentls_offsets cygtls.h
$^ $@ $(target_cpu) $(COMPILE.cc) -c || rm $@
sigfe.s: $(DEF_FILE)
+ @[ -s $@ ] || \
+ { rm -f $(DEF_FILE); $(MAKE) -s -j1 $(DEF_FILE); }; \
+ [ -s $@ ] && touch $@
sigfe.o: sigfe.s $(srcdir)/$(TLSOFFSETS_H)
$(CC) ${CFLAGS} -c -o $@ $<