Revision 6b53a369be9dbaeb3faffd956472d9093e8509b1 authored by Ron Burkey on 27 September 2016, 19:38:15 UTC, committed by Ron Burkey on 27 September 2016, 19:38:15 UTC
1 parent 676baeb
Raw File
Makefile1
#!/usr/bin/make
# This is just a temporary makefile for the block1 branch, until
# that's merged back in to the main branch.  I don't want to 
# call it "Makefile", so I'm calling it "Makefile1".

.PHONY: all
all:
	make -C yaAGC-Block1-Pultorak all
	make -C yaAGCb1 all
	make -C yaDSKYb1 all
	make -C yaUplinkBlock1 all
	make -C Validation-Block1 all

.PHONY: clean
clean:
	make -C yaAGC-Block1-Pultorak clean
	make -C yaAGCb1 clean
	make -C yaDSKYb1 clean
	make -C yaUplinkBlock1 clean
	make -C Validation-Block1 clean

back to top