URL
https://opencores.org/ocsvn/sdhc-sc-core/sdhc-sc-core/trunk
Subversion Repositories sdhc-sc-core
[/] [sdhc-sc-core/] [trunk/] [Makefile] - Rev 179
Go to most recent revision | Compare with Previous | Blame | View Log
# Recursive makefile for simulations
LIBS = libaltera_mf libcycloneii
SIMS = grpCrc/unitCrc grpStrobesClocks/unitTimeoutGenerator
SYSVSIMS = grpSd/unitSdVerificationTestbench
SYNS = grpSd/unitTbdSd
all: clean libs sim svsim syn
libs:
for i in $(LIBS); do make -C src/$$i/sim; done
sim: libs
for i in $(SIMS); do make -C src/$$i/sim; done
svsim: libs sim
for i in $(SYSVSIMS); do make -C src/$$i/sim; done
syn:
for i in $(SYNS); do make -C src/$$i/syn; done
clean:
for i in $(SIMS); do make -C src/$$i/sim clean; done
for i in $(SYSVSIMS); do make -C src/$$i/sim clean; done
for i in $(SYNS); do make -C src/$$i/syn clean; done
for i in $(LIBS); do make -C src/$$i/sim clean; done
Go to most recent revision | Compare with Previous | Blame | View Log