summaryrefslogtreecommitdiff
path: root/firmware/malloc/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/malloc/Makefile')
-rw-r--r--firmware/malloc/Makefile40
1 files changed, 0 insertions, 40 deletions
diff --git a/firmware/malloc/Makefile b/firmware/malloc/Makefile
deleted file mode 100644
index 4524d0630b..0000000000
--- a/firmware/malloc/Makefile
+++ /dev/null
@@ -1,40 +0,0 @@
1# __________ __ ___.
2# Open \______ \ ____ ____ | | _\_ |__ _______ ___
3# Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
4# Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
5# Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
6# \/ \/ \/ \/ \/
7# $Id$
8#
9# Copyright (C) 2002 by Daniel Stenberg
10#
11# All files in this archive are subject to the GNU General Public License.
12# See the file COPYING in the source tree root for full license agreement.
13#
14# This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
15# KIND, either express or implied.
16#
17
18TARGET = libdmalloc.a
19
20LIBOBJS = dmalloc.o bmalloc.o bysize.o
21
22# define this to talk a lot in runtime
23# -DDEBUG_VERBOSE
24CFLAGS = -g -W -Wall -DDEBUG_MALLOC
25CC = gcc
26AR = ar
27
28LDFLAGS = -L. -ldmalloc
29
30all: $(TARGET)
31
32clean:
33 rm -f core *~ $(TARGET) $(LIBOBJS)
34
35$(TARGET): $(LIBOBJS)
36 $(AR) ruv $(TARGET) $(LIBOBJS)
37
38bmalloc.o: bmalloc.c bysize.h
39bysize.o: bysize.c
40dmalloc.o: dmalloc.c