mirror of
https://github.com/torvalds/linux.git
synced 2024-11-17 09:31:50 +00:00
cecb977e24
This reverts commit079787f209
. Below commit already resolve a cross build problem. I have been noticed this too lately. commit3c4797d46c
Author: Rabin Vincent <rabin@rab.in> Date: Fri May 17 22:27:44 2013 +0200 tools lib lk: Respect CROSS_COMPILE Make lk use CROSS_COMPILE, in order to be able to cross compile perf again. Signed-off-by: Joonsoo Kim <iamjoonsoo.kim@lge.com> Cc: Ingo Molnar <mingo@redhat.com> Cc: Namhyung Kim <namhyung@kernel.org> Cc: Paul Mackerras <paulus@samba.org> Cc: Peter Zijlstra <a.p.zijlstra@chello.nl> Link: http://lkml.kernel.org/r/1373936614-22224-1-git-send-email-iamjoonsoo.kim@lge.com Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
39 lines
826 B
Makefile
39 lines
826 B
Makefile
include ../../scripts/Makefile.include
|
|
|
|
CC = $(CROSS_COMPILE)gcc
|
|
AR = $(CROSS_COMPILE)ar
|
|
|
|
# guard against environment variables
|
|
LIB_H=
|
|
LIB_OBJS=
|
|
|
|
LIB_H += debugfs.h
|
|
|
|
LIB_OBJS += $(OUTPUT)debugfs.o
|
|
|
|
LIBFILE = liblk.a
|
|
|
|
CFLAGS = -ggdb3 -Wall -Wextra -std=gnu99 -Werror -O6 -D_FORTIFY_SOURCE=2 $(EXTRA_WARNINGS) $(EXTRA_CFLAGS) -fPIC
|
|
EXTLIBS = -lelf -lpthread -lrt -lm
|
|
ALL_CFLAGS = $(CFLAGS) $(BASIC_CFLAGS) -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64
|
|
ALL_LDFLAGS = $(LDFLAGS)
|
|
|
|
RM = rm -f
|
|
|
|
$(LIBFILE): $(LIB_OBJS)
|
|
$(QUIET_AR)$(RM) $@ && $(AR) rcs $(OUTPUT)$@ $(LIB_OBJS)
|
|
|
|
$(LIB_OBJS): $(LIB_H)
|
|
|
|
$(OUTPUT)%.o: %.c
|
|
$(QUIET_CC)$(CC) -o $@ -c $(ALL_CFLAGS) $<
|
|
$(OUTPUT)%.s: %.c
|
|
$(QUIET_CC)$(CC) -S $(ALL_CFLAGS) $<
|
|
$(OUTPUT)%.o: %.S
|
|
$(QUIET_CC)$(CC) -o $@ -c $(ALL_CFLAGS) $<
|
|
|
|
clean:
|
|
$(RM) $(LIB_OBJS) $(LIBFILE)
|
|
|
|
.PHONY: clean
|