Root/atusb-sil/fw/Makefile

Source at commit 49e7c83796bc04941e9dbcec69bc0751563ff4d4 created 7 years 5 days ago.
By Werner Almesberger, atusb/: use ""VDD" symbol from kicad-libs
1#
2# fw/Makefile - ATUSB firmware build
3#
4# Written 2008-2010 by Werner Almesberger
5# Copyright 2008-2010 Werner Almesberger
6#
7# This program is free software; you can redistribute it and/or modify
8# it under the terms of the GNU General Public License as published by
9# the Free Software Foundation; either version 2 of the License, or
10# (at your option) any later version.
11#
12
13
14DIRS=common boot atusb
15
16
17.PHONY: all depend install uninstall clean spotless
18
19all:
20        for d in $(DIRS); do $(MAKE) -C $$d all || exit 1; done
21
22depend:
23        for d in $(DIRS); do $(MAKE) -C $$d depend || exit 1; done
24
25# Top-level Makefile recurses for "install" and "uninstall", which have no use
26# here. Just ignore them.
27
28install:
29
30uninstall:
31
32clean:
33        for d in $(DIRS); do $(MAKE) -C $$d clean || exit 1; done
34
35spotless:
36        for d in $(DIRS); do $(MAKE) -C $$d spotless || exit 1; done
37

Archive Download this file



interactive