Add main.c as dep to goodwatch.elf and rftest.elf make targets (#158)

This commit is contained in:
Wesley Ellis 2022-01-30 14:38:58 -05:00 committed by GitHub
parent 79da163756
commit a74c0f53f0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -140,10 +140,10 @@ githash.h:
buildtime.h:
../bin/buildtime.py >buildtime.h
goodwatch.elf: $(modules) $(apps) *.h
goodwatch.elf: $(modules) $(apps) *.h main.c
$(CC) -T cc430f6137.ld -o goodwatch.elf main.c $(modules) $(apps)
../bin/printsizes.py goodwatch.elf || echo "Please install python-pyelftools."
rftest.elf: $(modules) $(apps) *.h
rftest.elf: $(modules) $(apps) *.h main.c
$(CC) -DRFTEST -T cc430f6137.ld -o rftest.elf main.c $(modules) $(apps)
../bin/printsizes.py rftest.elf || echo "Please install python-pyelftools."