Skip to content
This repository has been archived by the owner on Apr 13, 2021. It is now read-only.

Commit

Permalink
Remove references to bootloader from Makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
fnoble committed Apr 17, 2014
1 parent 8e34a56 commit 34f7f70
Showing 1 changed file with 2 additions and 8 deletions.
10 changes: 2 additions & 8 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -18,18 +18,14 @@ else
MAKEFLAGS += PRN=$(PRN)
endif

.PHONY: all tests firmware bootloader docs .FORCE
.PHONY: all tests firmware docs .FORCE

all: firmware # bootloader tests
all: firmware # tests

firmware: libopencm3/lib/libopencm3_stm32f4.a libswiftnav/build/src/libswiftnav-static.a
@printf "BUILD src\n"; \
$(MAKE) -r -C src $(MAKEFLAGS)

bootloader:
@printf "BUILD bootloader\n"; \
$(MAKE) -r -C bootloader $(MAKEFLAGS)

tests:
$(Q)for i in tests/*; do \
if [ -d $$i ]; then \
Expand All @@ -51,8 +47,6 @@ libswiftnav/build/src/libswiftnav-static.a: .FORCE
clean:
@printf "CLEAN src\n"; \
$(MAKE) -C src $(MAKEFLAGS) clean
@printf "CLEAN bootloader\n"; \
$(MAKE) -C bootloader $(MAKEFLAGS) clean
@printf "CLEAN libopencm3\n"; \
$(MAKE) -C libopencm3 $(MAKEFLAGS) clean
@printf "CLEAN libswiftnav\n"; \
Expand Down

0 comments on commit 34f7f70

Please sign in to comment.