summaryrefslogtreecommitdiff
path: root/branches/historical-pic-firmware/devices/Makefile
blob: 0def90bb3e589b432583f8b9a6fa3428e0132708 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18

SUBDIRS=stepmotor stepmotorb stepmotorc stepmotor-small extruder_0_ extruder_1_ iobox

ifdef DEVICES
SUBDIRS=$(DEVICES)
endif

export
.PHONY: $(SUBDIRS)

subdirs:	$(SUBDIRS)

$(SUBDIRS):
	$(MAKE) -C $@

clean:
	rm -f *~
	for dir in $(SUBDIRS); do $(MAKE) -C $$dir clean; done