*.cm for CYGWIN need to be made executable (755 instead of 644)

This commit is contained in:
h_vogt 2009-02-22 12:41:18 +00:00
parent ff173965ac
commit c22be4689d
2 changed files with 8 additions and 0 deletions

View File

@ -1,3 +1,7 @@
2009-02-22 Holger Vogt
* xspice/icm/makefile: *.cm for CYGWIN need to be made executable
(755 instead of 644)
2009-02-22 Dietmar Warning
* devices/adms/mextram: Update to release version 504.7 now with selfheating
as a 5 terminal version

View File

@ -20,6 +20,10 @@ COMPILE = $(CC) $(INCLUDES) $(CFLAGS)
INSTALL_DATA = ${INSTALL} -m 644
ifeq ($(ISCYGWIN), 1)
INSTALL_DATA = ${INSTALL} -m 755
endif
all:
@for x in $(CMDIRS) ; do \
( cd $$x && $(UPMAKE) $$x-mods ) \