diff options
Diffstat (limited to 'libc/stdlib/malloc/Makefile')
-rw-r--r-- | libc/stdlib/malloc/Makefile | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/libc/stdlib/malloc/Makefile b/libc/stdlib/malloc/Makefile index 26cfb6930..368adb797 100644 --- a/libc/stdlib/malloc/Makefile +++ b/libc/stdlib/malloc/Makefile @@ -2,14 +2,10 @@ # This file is part of the Linux-8086 C library and is distributed # under the GNU Library General Public License. -LIBC=../libc.a - -CC=$(CROSS)gcc -AR=$(CROSS)ar -RANLIB=$(CROSS)ranlib - -CCFLAGS= -O2 $(CPUFLAGS) -I../include +TOPDIR=../ +include Rules.make +LIBC=../libc.a MSRC=alloc.c MOBJ=malloc.o free.o calloc.o malloc_dbg.o free_dbg.o calloc_dbg.o |