URL
https://opencores.org/ocsvn/logicprobe/logicprobe/trunk
Subversion Repositories logicprobe
[/] [logicprobe/] [trunk/] [Makefile] - Rev 8
Go to most recent revision | Compare with Previous | Blame | View Log
#
# Makefile for LogicProbe project
#
DIRS = src tst
all:
for i in $(DIRS) ; do \
$(MAKE) -C $$i all ; \
done
clean:
for i in $(DIRS) ; do \
$(MAKE) -C $$i clean ; \
done
rm -f *~
dist: clean
(cd ../.. ; \
tar --exclude-vcs -cvf logicprobe.tar logicprobe/* ; \
gzip -f logicprobe.tar)
Go to most recent revision | Compare with Previous | Blame | View Log