Fix: Makefile used cc instead of $(UCC)
This commit is contained in:
parent
668b3fc2d8
commit
eaea6c1c59
1 changed files with 2 additions and 2 deletions
|
@ -42,8 +42,8 @@ gensize_type.h: getsize
|
||||||
getsize > gensize_type.h
|
getsize > gensize_type.h
|
||||||
|
|
||||||
getsize: $(SRC_DIR)/getsize.c
|
getsize: $(SRC_DIR)/getsize.c
|
||||||
cc -o getsize $(SRC_DIR)/getsize.c
|
$(UCC) -o getsize $(SRC_DIR)/getsize.c
|
||||||
# use cc, not $(CC) as this must produce runnable binary.
|
# use $(UCC), not $(CC) as this must produce runnable binary.
|
||||||
|
|
||||||
malloc.$(SUF): malloc.c
|
malloc.$(SUF): malloc.c
|
||||||
$(CC) -c $(CFLAGS) malloc.c
|
$(CC) -c $(CFLAGS) malloc.c
|
||||||
|
|
Loading…
Reference in a new issue