URL
https://opencores.org/ocsvn/logicprobe/logicprobe/trunk
Subversion Repositories logicprobe
[/] [logicprobe/] [trunk/] [tst/] [Makefile] - Rev 10
Go to most recent revision | Compare with Previous | Blame | View Log
#
# Makefile to build the simulation test programs and
# synthesize the project for different boards
#
DIRS = sim-c sim-v boards
all:
for i in $(DIRS) ; do \
$(MAKE) -C $$i all ; \
done
clean:
for i in $(DIRS) ; do \
$(MAKE) -C $$i clean ; \
done
rm -f *~
Go to most recent revision | Compare with Previous | Blame | View Log