https://github.com/RedPitaya/RedPitaya
Raw File
Tip revision: 266a68ae60b09cc8667585ed5c9af348d36f3264 authored by n.danilyuk on 15 March 2024, 02:27:24 UTC
Merge branch 'master' of https://github.com/RedPitaya/RedPitaya
Tip revision: 266a68a
Makefile
#
# $ID: Makefile 2015-06-30  15:02:23 luka.golinar
#

#List of applications to build
APPS = scope scope+gen scope+pid spectrum freqanalyzer bode_plotter impedance_analyzer teslameter lti scope+istsensor stemlab_vna

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

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

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

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