The addition of delay.h to the dependencies of (PROGRAM).elf did not have the desired effect (to force a recompile of all if delay.h changed). Removed the dependency.

This commit is contained in:
Jim McGee 2011-05-04 22:33:41 -07:00
parent 86a34ad5a2
commit b00c53f69e
1 changed files with 1 additions and 1 deletions

View File

@ -111,7 +111,7 @@ OBJ = $(patsubst %.c,%.o,${SOURCES})
all: config.h subdirs $(PROGRAM).hex $(PROGRAM).lst $(PROGRAM).sym size
$(PROGRAM).elf: $(LIBDEPS) delay.h
$(PROGRAM).elf: $(LIBDEPS)
subdirs:
@for dir in $(SUBDIRS); do \