diff options
author | Keith Packard <keithp@keithp.com> | 2012-07-11 13:49:26 -0700 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2012-07-11 13:49:26 -0700 |
commit | 18431c88c8a6cb267922b97192e8b7ddb88d0e7e (patch) | |
tree | 3783f3a3da5c34a73faca1b9fedbc31a927cff2a /src/test | |
parent | 726f47c8a07f060aed930e1d102a1e8b5a5c7aed (diff) |
altos: Have 'make clean' remove all programs, even old ones
This makes sure that changing version numbers doesn't leave old
compiled output lying around.
Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'src/test')
-rw-r--r-- | src/test/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/Makefile b/src/test/Makefile index 963f4131..db3cc04b 100644 --- a/src/test/Makefile +++ b/src/test/Makefile @@ -9,7 +9,7 @@ CFLAGS=-I.. -I. -I../core -I../drivers -O3 -g -Wall all: $(PROGS) clean: - rm -f $(PROGS) + rm -f $(PROGS) run-out.baro run-out.full install: |