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:
parent
86a34ad5a2
commit
b00c53f69e
2
Makefile
2
Makefile
|
|
@ -111,7 +111,7 @@ OBJ = $(patsubst %.c,%.o,${SOURCES})
|
||||||
|
|
||||||
all: config.h subdirs $(PROGRAM).hex $(PROGRAM).lst $(PROGRAM).sym size
|
all: config.h subdirs $(PROGRAM).hex $(PROGRAM).lst $(PROGRAM).sym size
|
||||||
|
|
||||||
$(PROGRAM).elf: $(LIBDEPS) delay.h
|
$(PROGRAM).elf: $(LIBDEPS)
|
||||||
|
|
||||||
subdirs:
|
subdirs:
|
||||||
@for dir in $(SUBDIRS); do \
|
@for dir in $(SUBDIRS); do \
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue