summaryrefslogtreecommitdiffstats
path: root/arch/mips/tools
diff options
context:
space:
mode:
authorHarald Koerfgen <hkoerfg@web.de>2000-05-24 17:34:21 +0000
committerHarald Koerfgen <hkoerfg@web.de>2000-05-24 17:34:21 +0000
commit43ce646d0fe5cc4efe6e2847fd3503a4956f64ff (patch)
tree53cfd7699bfedd67dba1ef761cd9d43553374c6a /arch/mips/tools
parente9507dc38f2389904a06a446fd2dd02181a4bf23 (diff)
no real solution for the offset.h-chicken-egg-problem, but this does all I wnat
Diffstat (limited to 'arch/mips/tools')
-rw-r--r--arch/mips/tools/Makefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/arch/mips/tools/Makefile b/arch/mips/tools/Makefile
index 94cfc08a0..2e650873d 100644
--- a/arch/mips/tools/Makefile
+++ b/arch/mips/tools/Makefile
@@ -12,7 +12,7 @@ TARGET := $(TOPDIR)/include/asm-$(ARCH)/offset.h
.S.o:
$(CC) $(CFLAGS) -c $< -o $*.o
-all: $(TARGET)
+fastdep: $(TARGET)
$(TARGET): offset.h
cmp -s $^ $@ || (cp $^ $(TARGET).new && mv $(TARGET).new $(TARGET))
@@ -24,5 +24,7 @@ offset.s: offset.c
clean:
rm -f offset.[hs] $(TARGET).new
+ rm $(TARGET)
+ touch $(TARGET)
include $(TOPDIR)/Rules.make