7 lines
113 B
Makefile
7 lines
113 B
Makefile
|
Target = adpcmDecodeDemo
|
||
|
|
||
|
CompileFlags = $(CFLAGS)
|
||
|
|
||
|
$(Target): main.c
|
||
|
$(CC) -o $@ $^ $(CompileFlags) $(LDFLAGS)
|