Open Source Tomb Raider Engine
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

deps.sh 267B

12345678910111213
  1. # Mongoose - This is a simple dep line generator
  2. # modified by xythobuz
  3. #
  4. # Call it passing CFLAGS and a source filename
  5. # to generate a dep line
  6. cc -MM -w $@
  7. OUT=$?
  8. if [ $OUT -eq 0 ];then
  9. printf "\$(BUILDDIR)/"
  10. cc -MM -w $@
  11. printf "\t \$(DO_CC)\n\n"
  12. fi