dep-repository

Default repository for the dep dependency manager
git clone git://git.finwo.net/misc/dep-repository
Log | Files | Refs

commit 2827942b3471b37cb166f16decac909bddb109e4
parent b12d8447d70b3257efd59ef85e08bb2f3f078314
Author: finwo <finwo@pm.me>
Date:   Wed, 15 Nov 2017 00:19:44 +0100

Makefiles use tabs, not spaces

Diffstat:
Mcdeps/cc-simple/60-Makefile | 14+++++++-------
1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/cdeps/cc-simple/60-Makefile b/cdeps/cc-simple/60-Makefile @@ -1,8 +1,8 @@ %.o: %.c - $(CC) -c $(CFLAGS) $*.c -o $*.o - $(CC) -MM $(CFLAGS) $*.c > $*.d - @mv -f $*.d $*.d.tmp - @sed -e 's|.*:|$*.o:|' < $*.d.tmp > $*.d - @sed -e 's/.*://' -e 's/\\$$//' < $*.d.tmp | fmt -1 | \ - sed -e 's/^ *//' -e 's/$$/:/' >> $*.d - @rm -f $*.d.tmp + $(CC) -c $(CFLAGS) $*.c -o $*.o + $(CC) -MM $(CFLAGS) $*.c > $*.d + @mv -f $*.d $*.d.tmp + @sed -e 's|.*:|$*.o:|' < $*.d.tmp > $*.d + @sed -e 's/.*://' -e 's/\\$$//' < $*.d.tmp | fmt -1 | \ + sed -e 's/^ *//' -e 's/$$/:/' >> $*.d + @rm -f $*.d.tmp