X-Git-Url: http://git.mutantstargoat.com/user/nuclear/?p=dos_sbtest;a=blobdiff_plain;f=Makefile;h=118d4f045cf211ebe75bf8749e79bea644c958bb;hp=cb6a3d6312be958d13cb7291184217d22cefe102;hb=01a545fde6dc446fe626382f8bba50b9b7c1a35b;hpb=6d4de53a835a8258ba05c83a2af38f27a0e92d21 diff --git a/Makefile b/Makefile index cb6a3d6..118d4f0 100644 --- a/Makefile +++ b/Makefile @@ -17,6 +17,7 @@ opt = -O3 -ffast-math -fno-strict-aliasing dbg = -g warn = -pedantic -Wall -Wno-unused-function -Wno-unused-variable +AS = $(TOOLPREFIX)as CC = $(TOOLPREFIX)gcc AR = $(TOOLPREFIX)ar CFLAGS = $(warn) -march=pentium $(dbg) $(opt) $(inc) @@ -34,7 +35,7 @@ $(bin): $(obj) $(CC) $(CFLAGS) -o $@ -c $< %.d: %.c - @echo "gen dep $< -> $@" && $(CPP) $(CFLAGS) $< -MM -MT $(@:.d=.o) >$@ + @echo "gen dep $< -> $@"; $(CPP) $(CFLAGS) $< -MM -MT $(@:.d=.o) >$@ .PHONY: clean .PHONY: cleandep