https://github.com/RedPitaya/RedPitaya
Raw File
Tip revision: 8212e1d82815a358696e4150f0ea7fa3adccda8c authored by Iztok Jeras on 08 September 2015, 13:49:33 UTC
Merge remote-tracking branch 'origin/master_dev_ru'
Tip revision: 8212e1d
Makefile
#
# $ID: Makefile 2015-06-30  15:02:23 luka.golinar
#

#List of applications to build
APPS = scope scope+gen scope+pid spectrum freqanalyzer

all: zips

zips:
	for APP in $(APPS); do \
		$(MAKE) -C $$APP; \
	done

install:
	mkdir build
	for APP in $(APPS); do \
		$(MAKE) -C $$APP INSTALL_DIR=../../build zip; \
	done

clean:
	for app in $(APPS); do \
		$(MAKE) -C $$app clean; \
	done

	-$(RM) -rf ./build/
back to top