URL
https://opencores.org/ocsvn/or1k/or1k/trunk
Subversion Repositories or1k
[/] [or1k/] [trunk/] [linux/] [linux-2.4/] [arch/] [mips/] [tools/] [Makefile] - Rev 1275
Go to most recent revision | Compare with Previous | Blame | View Log
# Makefile for MIPS kernel build tools.
#
# Copyright (C) 1996 David S. Miller (dm@engr.sgi.com)
# Copyright (C) 1997 Ralf Baechle (ralf@gnu.ai.mit.edu)
#
TARGET := $(TOPDIR)/include/asm-$(ARCH)/offset.h
USE_STANDARD_AS_RULE := true
$(TARGET): offset.h
cmp -s $^ $@ || (cp $^ $(TARGET).new && mv $(TARGET).new $(TARGET))
offset.h: offset.s
sed -n '/^@@@/s///p' $^ >$@
offset.s: offset.c $(TOPDIR)/include/linux/autoconf.h
clean:
rm -f offset.[hs] $(TARGET).new
mrproper: clean
rm -f $(TARGET)
include $(TOPDIR)/Rules.make
Go to most recent revision | Compare with Previous | Blame | View Log