the commands for a rule in a amkefile must in classical makefiles start with a TAB not with spaces.

svn path=/trunk/; revision=19100
This commit is contained in:
Ronnie Sahlberg 2006-08-31 09:37:02 +00:00
parent 503bf26e98
commit d1040bd39a
1 changed files with 3 additions and 3 deletions

View File

@ -26,13 +26,13 @@ codecs.lib : $(CODEC_OBJECTS)
G711adecode.obj: G711a\G711adecode.c G711a\G711adecode.h G711a\G711atable.h
$(CC) $(CFLAGS) -c /Zi /W1 /Od G711a\G711adecode.c -o $@
$(CC) $(CFLAGS) -c /Zi /W1 /Od G711a\G711adecode.c -o $@
G711udecode.obj: G711u\G711udecode.c G711u\G711udecode.h G711u\G711utable.h
$(CC) $(CFLAGS) -c /Zi /W1 /Od G711u\G711udecode.c -o $@
$(CC) $(CFLAGS) -c /Zi /W1 /Od G711u\G711udecode.c -o $@
clean:
rm -f $(CODEC_OBJECTS) codecs.lib *.pdb
rm -f $(CODEC_OBJECTS) codecs.lib *.pdb
distclean: clean