Browse Source

too much quoting caused an error for quoted things in CFLAGS

pre-master-46
rlar 16 years ago
parent
commit
9cb57888d5
  1. 5
      ChangeLog
  2. 4
      src/xspice/icm/Makefile

5
ChangeLog

@ -1,3 +1,8 @@
2010-10-08 Robert Larice
* src/xspice/icm/Makefile :
too much quoting caused an error for quoted things in CFLAGS
( CFLAGS=-D"SIGNAL_FUNCTION='void(*)(int)'" ./configure )
2010-10-08 Robert Larice
* src/frontend/spiceif.c ,
* src/frontend/spiceif.h ,

4
src/xspice/icm/Makefile

@ -95,7 +95,7 @@ dlmain.o: cmextrn.h cminfo.h udnextrn.h udninfo.h
-rm -f cmextrn.h cminfo.h objects.inc udnextrn.h udninfo.h \
dlmain.c dlmain.o
-rm -rf .deps
objs: ifspec.o cfunc.o
@ -110,7 +110,7 @@ uobjs-clean:
-rm -rf .deps
%.o: %.c
@echo '$(COMPILE) $(DEPFLAGS) .deps/$(*F).pp -c $<'; \
@echo $(COMPILE) $(DEPFLAGS) .deps/$(*F).pp -c $< ; \
$(COMPILE) $(DEPFLAGS) .deps/$(*F).pp -c $<
@-cp .deps/$(*F).pp .deps/$(*F).P; \
tr ' ' '\012' < .deps/$(*F).pp \

Loading…
Cancel
Save