From 6c6013e51e196c54df4f0f7db78e31dab59e2bc5 Mon Sep 17 00:00:00 2001 From: Joshua Haberman Date: Sat, 20 Aug 2011 18:55:25 -0700 Subject: Fold gen-deps.sh into Makefile. --- gen-deps.sh | 18 ------------------ 1 file changed, 18 deletions(-) delete mode 100755 gen-deps.sh (limited to 'gen-deps.sh') diff --git a/gen-deps.sh b/gen-deps.sh deleted file mode 100755 index adb42ef..0000000 --- a/gen-deps.sh +++ /dev/null @@ -1,18 +0,0 @@ -#!/bin/sh -# This script wraps gcc -MM, which unhelpfully strips the directory -# off of the input filename. In other words, if you run: -# -# $ gcc -MM src/upb_parse.c -# -# ...the emitted dependency information looks like: -# -# upb_parse.o: src/upb_parse.h [...] -# -# Since upb_parse.o is actually in src, the dependency information is -# not used. To remedy this, we use the -MT flag (see gcc docs). - -set -e -rm -f deps -for file in $@; do - gcc -MM $file -MT ${file%.*}.o $CPPFLAGS -I. >> deps -done -- cgit v1.2.3