dropped the compiled-in sound sample, loading from the filesystem
[dos_sbtest] / Makefile
index cb6a3d6..118d4f0 100644 (file)
--- 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