diff options
author | gingold | 2005-12-10 17:11:30 +0000 |
---|---|---|
committer | gingold | 2005-12-10 17:11:30 +0000 |
commit | 4339f4ca9ed9fe2c58d390e7738a5d2ee7d43545 (patch) | |
tree | 8b49a281d46328ce06b5f45d8dea275f36feec55 /libraries | |
parent | 1716b52525c5b6baaba7e0a16d6d9dbf6633ac6d (diff) | |
download | ghdl-4339f4ca9ed9fe2c58d390e7738a5d2ee7d43545.tar.gz ghdl-4339f4ca9ed9fe2c58d390e7738a5d2ee7d43545.tar.bz2 ghdl-4339f4ca9ed9fe2c58d390e7738a5d2ee7d43545.zip |
bug fixes
Diffstat (limited to 'libraries')
-rw-r--r-- | libraries/Makefile.inc | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libraries/Makefile.inc b/libraries/Makefile.inc index e1557c6..e32da22 100644 --- a/libraries/Makefile.inc +++ b/libraries/Makefile.inc @@ -24,6 +24,7 @@ # ANALYZE # LN # CP +# VHDLLIBS_COPY_OBJS # # Note: the source files are analyzed in the LIBxx_DIR. So LIBSRC_DIR must be # relative to the target directory. @@ -110,6 +111,7 @@ synopsys.v93: $(LIB93_DIR) $(SYNOPSYS_SRCS) force mkdir $(SYN93_DIR) prev=`pwd`; cd $(SYN93_DIR); \ $(CP) ../ieee/ieee-obj93.cf .; \ + test x$(VHDLLIBS_COPY_OBJS) = "xno" || \ for i in $(IEEE_SRCS) $(VITAL2000_SRCS); do \ b=`basename $$i .vhdl`; $(LN) ../ieee/$$b.o $$b.o || exit 1; \ done; \ @@ -124,6 +126,7 @@ mentor.v93: $(LIB93_DIR) $(MENTOR93_SRCS) force mkdir $(MENTOR93_DIR) prev=`pwd`; cd $(MENTOR93_DIR); \ $(CP) ../ieee/ieee-obj93.cf . ;\ + test x$(VHDLLIBS_COPY_OBJS) = "xno" || \ for i in $(IEEE_SRCS) $(VITAL2000_SRCS); do \ b=`basename $$i .vhdl`; $(LN) ../ieee/$$b.o $$b.o || exit 1; \ done ; \ @@ -159,6 +162,7 @@ synopsys.v87: $(LIB87_DIR) $(SYNOPSYS_SRCS) force mkdir $(SYN87_DIR) prev=`pwd`; cd $(SYN87_DIR); \ $(CP) ../ieee/ieee-obj87.cf . ; \ + test x$(VHDLLIBS_COPY_OBJS) = "xno" || \ for i in $(IEEE_SRCS) $(VITAL95_SRCS); do \ b=`basename $$i .vhdl`; $(LN) ../ieee/$$b.o $$b.o || exit 1; \ done; \ |