blob: 2215a6025e101f4d10e092f94faba129e2a61097 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
# Makefile for uClibc
#
# Copyright (C) 2000-2005 Erik Andersen <andersen@uclibc.org>
#
# Licensed under the GNU Library General Public License version 2 or later.
# See the COPYING.LIB file in the toplevel for more information.
TOPDIR=../../../
include $(TOPDIR)Rules.mak
CSRCS = $(wildcard *.c)
COBJS = $(patsubst %.c,%.o,$(CSRCS))
SSRCS = $(wildcard *.S)
SOBJS = $(patsubst %.S,%.o,$(SSRCS))
OBJS = $(COBJS) $(SOBJS)
OBJ_LIST = ../../obj.string.$(TARGET_ARCH)
all: $(OBJ_LIST)
$(OBJ_LIST): $(OBJS)
echo $(patsubst %, string/$(TARGET_ARCH)/%, $(OBJS)) > $(OBJ_LIST)
$(COBJS): %.o : %.c
$(CC) $(CFLAGS) -c $< -o $@
$(STRIPTOOL) -x -R .note -R .comment $*.o
clean:
$(RM) *.[oa] *~ core
|