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.
12345678910111213 |
- # Mongoose - This is a simple dep line generator
- #
- # Call it passing CFLAGS and a source filename
- # to generate a dep line
-
- echo "# deps.sh was passed:"
- echo -n "# "
- echo $@
-
- echo "# Then made this line:"
- echo -n "\$(BUILDDIR)/"
- cc -MM $@
- printf "\t \$(DO_CC)\n\n"
|