diff options
author | Wolfgang Denk <wd@pollux.denx.de> | 2005-08-23 22:29:44 +0200 |
---|---|---|
committer | Wolfgang Denk <wd@pollux.denx.de> | 2005-08-23 22:29:44 +0200 |
commit | 2ac4785c2fc5289780f63a00d9b9a75dd658b15e (patch) | |
tree | b6fc2701545e2a7d4b7604122c8478e018310236 /cpu/arm920t/ks8695 | |
parent | d534f5cc38dd7bcc72d5ca2dd59cde73d6c868a8 (diff) |
Fix make dependencies for at91rm9200 and ks8695 cpus
Patch by Steven Scholz, 23 Aug 2005
Diffstat (limited to 'cpu/arm920t/ks8695')
-rw-r--r-- | cpu/arm920t/ks8695/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cpu/arm920t/ks8695/Makefile b/cpu/arm920t/ks8695/Makefile index ada71740b00..ac490608972 100644 --- a/cpu/arm920t/ks8695/Makefile +++ b/cpu/arm920t/ks8695/Makefile @@ -35,8 +35,8 @@ $(LIB): $(OBJS) $(SOBJS) ######################################################################### -.depend: Makefile $(OBJS:.o=.c) - $(CC) -M $(CFLAGS) $(OBJS:.o=.c) > $@ +.depend: Makefile $(SOBJS:.o=.S) $(OBJS:.o=.c) + $(CC) -M $(CFLAGS) $(SOBJS:.o=.S) $(OBJS:.o=.c) > $@ sinclude .depend |