Unix Build Tweaks

Small stuff.  Mostly just gets the make diff mechanism working again.  Not sure if anyone actually uses it though.
This commit is contained in:
Wayne Warthen
2022-07-08 10:35:17 -07:00
parent d241db5c11
commit 4385efb0f7
6 changed files with 23 additions and 19 deletions

View File

@@ -166,7 +166,7 @@ ifneq ($(DIFFTO),)
@for dir in $(SUBDIRS) ; do \
( echo "diff in $(HERE)/$$dir" ; cd "$$dir" ; make diff ) ; \
done
@for i in $(OBJECTS) $(MOREDIFF) ; do \
@for i in $(filter-out $(NODIFF),$(OBJECTS) $(MOREDIFF)) ; do \
sf=$$($(CASEFN) $$i) ; \
df=$$($(CASEFN) $(DIFFPATH)/$$i) ; \
if [ -f "$$df" -a -f "$$sf" ] ; then \
@@ -187,5 +187,6 @@ ifneq ($(DIFFTO),)
done
endif
vdiff:
make VERBOSEDIFF=2 diff