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.
123456789101112 |
- # Mongoose - This is a simple dep line generator
- #
- # Call it passing CFLAGS and a source filename
- # to generate a dep line
-
- cc -MM $@ > /dev/null
- OUT=$?
- if [ $OUT -eq 0 ];then
- printf "\$(BUILDDIR)/"
- cc -MM $@
- printf "\t \$(DO_CC)\n\n"
- fi
|