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 264B

12345678910111213
  1. # Mongoose - This is a simple dep line generator
  2. #
  3. # Call it passing CFLAGS and a source filename
  4. # to generate a dep line
  5. echo "# deps.sh was passed:"
  6. echo -n "# "
  7. echo $@
  8. echo "# Then made this line:"
  9. echo -n "\$(BUILDDIR)/"
  10. cc -MM $@
  11. printf "\t \$(DO_CC)\n\n"