Browse Source

Update dependencies

Change sort order using -f (--ignore-case):
  fold lower case to upper case characters
pull/94/head
Albrecht Schlosser 5 years ago
parent
commit
1078b8fe43
  1. 4
      .gitignore
  2. 2
      cairo/Makefile
  3. 2
      cairo/makedepend
  4. 2
      fluid/Makefile
  5. 1362
      fluid/makedepend
  6. 2
      src/Makefile
  7. 5134
      src/makedepend
  8. 2
      test/Makefile
  9. 786
      test/makedepend

4
.gitignore vendored

@ -48,6 +48,10 @@ etc/FLTKConfig.cmake
/FL/Makefile /FL/Makefile
/FL/*.bck /FL/*.bck
# /cairo/
/cairo/*.so*
/cairo/*.dll
# /documentation/ # /documentation/
/documentation/.xvpics /documentation/.xvpics
/documentation/blocks.0 /documentation/blocks.0

2
cairo/Makefile

@ -168,7 +168,7 @@ depend: $(CAIROCPPFILES)
makedepend -Y -I.. -f makedepend -w 20 $(CAIROCPPFILES) makedepend -Y -I.. -f makedepend -w 20 $(CAIROCPPFILES)
echo "# DO NOT DELETE THIS LINE -- make depend depends on it." > makedepend.tmp echo "# DO NOT DELETE THIS LINE -- make depend depends on it." > makedepend.tmp
echo "" >> makedepend.tmp echo "" >> makedepend.tmp
grep '^[a-zA-Z]' makedepend | ( LC_ALL=C sort -u >> makedepend.tmp; ) grep '^[a-zA-Z]' makedepend | ( LC_ALL=C sort -u -f >> makedepend.tmp; )
mv makedepend.tmp makedepend mv makedepend.tmp makedepend
include makedepend include makedepend

2
cairo/makedepend

@ -3,11 +3,11 @@
Fl_Cairo.o: ../config.h Fl_Cairo.o: ../config.h
Fl_Cairo.o: ../FL/abi-version.h Fl_Cairo.o: ../FL/abi-version.h
Fl_Cairo.o: ../FL/Enumerations.H Fl_Cairo.o: ../FL/Enumerations.H
Fl_Cairo.o: ../FL/Fl.H
Fl_Cairo.o: ../FL/Fl_Bitmap.H Fl_Cairo.o: ../FL/Fl_Bitmap.H
Fl_Cairo.o: ../FL/Fl_Cairo.H Fl_Cairo.o: ../FL/Fl_Cairo.H
Fl_Cairo.o: ../FL/Fl_Export.H Fl_Cairo.o: ../FL/Fl_Export.H
Fl_Cairo.o: ../FL/Fl_Group.H Fl_Cairo.o: ../FL/Fl_Group.H
Fl_Cairo.o: ../FL/Fl.H
Fl_Cairo.o: ../FL/Fl_Image.H Fl_Cairo.o: ../FL/Fl_Image.H
Fl_Cairo.o: ../FL/fl_types.h Fl_Cairo.o: ../FL/fl_types.h
Fl_Cairo.o: ../FL/fl_utf8.h Fl_Cairo.o: ../FL/fl_utf8.h

2
fluid/Makefile

@ -76,7 +76,7 @@ depend: $(CPPFILES)
makedepend -Y -I.. -f makedepend -w 20 $(CPPFILES) makedepend -Y -I.. -f makedepend -w 20 $(CPPFILES)
echo "# DO NOT DELETE THIS LINE -- make depend depends on it." > makedepend.tmp echo "# DO NOT DELETE THIS LINE -- make depend depends on it." > makedepend.tmp
echo "" >> makedepend.tmp echo "" >> makedepend.tmp
grep '^[a-zA-Z]' makedepend | ( LC_ALL=C sort -u >> makedepend.tmp; ) grep '^[a-zA-Z]' makedepend | ( LC_ALL=C sort -u -f >> makedepend.tmp; )
mv makedepend.tmp makedepend mv makedepend.tmp makedepend
# Automatically generated dependencies... # Automatically generated dependencies...

1362
fluid/makedepend

File diff suppressed because it is too large Load Diff

2
src/Makefile

@ -609,7 +609,7 @@ depend: $(CPPFILES) $(MMFILES) $(FLCPPFILES) $(GLCPPFILES) $(IMGCPPFILES) $(CFIL
$(GLCPPFILES) $(IMGCPPFILES) $(CFILES) $(UTF8CFILES) $(XLIBCFILES) $(GLCPPFILES) $(IMGCPPFILES) $(CFILES) $(UTF8CFILES) $(XLIBCFILES)
echo "# DO NOT DELETE THIS LINE -- make depend depends on it." > makedepend.tmp echo "# DO NOT DELETE THIS LINE -- make depend depends on it." > makedepend.tmp
echo "" >> makedepend.tmp echo "" >> makedepend.tmp
grep '^[a-zA-Z]' makedepend | ( LC_ALL=C sort -u >> makedepend.tmp; ) grep '^[a-zA-Z]' makedepend | ( LC_ALL=C sort -u -f >> makedepend.tmp; )
mv makedepend.tmp makedepend mv makedepend.tmp makedepend
# Automatically generated dependencies... generated on a Linux/Unix host ! # Automatically generated dependencies... generated on a Linux/Unix host !

5134
src/makedepend

File diff suppressed because it is too large Load Diff

2
test/Makefile

@ -187,7 +187,7 @@ depend: $(CPPFILES)
makedepend -Y -I.. -f makedepend -w 20 $(CPPFILES) makedepend -Y -I.. -f makedepend -w 20 $(CPPFILES)
echo "# DO NOT DELETE THIS LINE -- make depend depends on it." > makedepend.tmp echo "# DO NOT DELETE THIS LINE -- make depend depends on it." > makedepend.tmp
echo "" >> makedepend.tmp echo "" >> makedepend.tmp
grep '^[a-zA-Z]' makedepend | ( LC_ALL=C sort -u >> makedepend.tmp; ) grep '^[a-zA-Z]' makedepend | ( LC_ALL=C sort -u -f >> makedepend.tmp; )
mv makedepend.tmp makedepend mv makedepend.tmp makedepend
# Automatically generated dependencies... # Automatically generated dependencies...

786
test/makedepend

File diff suppressed because it is too large Load Diff
Loading…
Cancel
Save