SAIFIINDUSTRIES's picture
Add batch 8 (NetFPGA_netfpga, LeiWang1999_ZYNQ-NVDLA, secworks_sha256, Arlet_verilog-6502, ridecore_ridecore)
a3dba46 verified
Raw
History Blame
584 Bytes
#
# Run make in each of the subdirectories
#
# Set environment variables to correspond to the current working directory
export NF_ROOT = $(CURDIR)
export PERL5LIB := $(CURDIR)/lib/Perl5:$(PERL5LIB)
# List of directories in which we should build
SUBDIRS = lib bitfiles projects
# Install the various files
subdirs: $(SUBDIRS)
$(SUBDIRS):
echo $(PERL5LIB)
if [ -f "$@/Makefile" ] ; then \
$(MAKE) -C $@ ; \
fi
clean install:
for dir in $(SUBDIRS) ; do \
if [ -f "$$dir/Makefile" ] ; then \
$(MAKE) -C $$dir $@; \
fi \
done
.PHONY: install subdirs $(SUBDIRS) clean