Fix: Makefile used cc instead of $(UCC)
authorceriel <none@none>
Fri, 3 Sep 1993 11:02:02 +0000 (11:02 +0000)
committerceriel <none@none>
Fri, 3 Sep 1993 11:02:02 +0000 (11:02 +0000)
modules/src/malloc/proto.make

index 7f235d2..fc68e68 100644 (file)
@@ -42,8 +42,8 @@ gensize_type.h:       getsize
                getsize > gensize_type.h
 
 getsize:       $(SRC_DIR)/getsize.c
-               cc -o getsize $(SRC_DIR)/getsize.c
-# use cc, not $(CC) as this must produce runnable binary.
+               $(UCC) -o getsize $(SRC_DIR)/getsize.c
+# use $(UCC), not $(CC) as this must produce runnable binary.
 
 malloc.$(SUF): malloc.c
                $(CC) -c $(CFLAGS) malloc.c