From 252eb44959610757438d9a6f20fb5f09908a0530 Mon Sep 17 00:00:00 2001 From: zimoch Date: Fri, 16 Sep 2011 15:22:06 +0000 Subject: [PATCH] use perl script instead of shell script to allow for windows --- srcSynApps/Makefile | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/srcSynApps/Makefile b/srcSynApps/Makefile index cd3593b..4fec9f9 100644 --- a/srcSynApps/Makefile +++ b/srcSynApps/Makefile @@ -20,6 +20,4 @@ include $(TOP)/configure/RULES # create streamSynApps.dbd from all SYNAPPS_RECORDS $(COMMON_DIR)/$(LIBRARY_DEFAULT).dbd: ../../src/CONFIG_STREAM - @for r in $(SYNAPPS_RECORDS); \ - do echo "device($$r,INST_IO,dev$${r}Stream,\"stream\")"; \ - done > $@ + $(PERL) ../../src/makedbd.pl $(SYNAPPS_RECORDS) > $@