- Timestamp:
- 05/20/08 21:14:04 (8 months ago)
- Location:
- NEWT0/branches/DyneTK
- Files:
-
- 3 modified
-
Makefile.in (modified) (4 diffs)
-
contrib/inwt/Makefile (modified) (1 diff)
-
src/newt_core/NewtNSOF.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
NEWT0/branches/DyneTK/Makefile.in
r115 r121 1 DEBUG = # -g 1 2 # use the first setting for debugging and the second setting for optimized compilation 3 DEBUG = -g 4 #DEBUG = -O2 2 5 3 6 … … 24 27 EXEEXT = @EXEEXT@ 25 28 LDIMPORT = @NEWT_LDIMPORT@ 26 LDFLAGS = $(DEBUG) -O2@LDFLAGS@ @NEWT_LDFLAGS@29 LDFLAGS = $(DEBUG) @LDFLAGS@ @NEWT_LDFLAGS@ 27 30 LDSHARED = @LIBNEWT_LDSHARED@ 28 31 … … 39 42 VPATH = $(core) 40 43 STRIP = strip -x 41 CFLAGS = $(DEBUG) $(DEFS) - O2 -pipe44 CFLAGS = $(DEBUG) $(DEFS) -pipe 42 45 CPPFLAGS = -I. -I$(srcdir) -I$(core)/incs -I$(srcdir)/parser -I$(yytmp) @CPPFLAGS@ 43 46 … … 113 116 ### all 114 117 115 all: newt @MAKE_EXT@ @MAKE_CONTRIB@118 all: libnewt newt @MAKE_EXT@ @MAKE_CONTRIB@ 116 119 117 120 ### make directory -
NEWT0/branches/DyneTK/contrib/inwt/Makefile
r103 r121 1 prefix = / opt/local1 prefix = /usr/local 2 2 exec_prefix = ${prefix} 3 3 bindir = ${exec_prefix}/bin -
NEWT0/branches/DyneTK/src/newt_core/NewtNSOF.c
r113 r121 954 954 xlen = NSOFReadXlong(nsof); 955 955 956 if (xlen == 0) 957 return NcMakeFrame(); 956 if (xlen == 0) { 957 r = NcMakeFrame(); 958 NcAddArraySlot(nsof->precedents, r); 959 return r; 960 } 958 961 959 962 map = NewtMakeMap(kNewtRefNIL, xlen, NULL);
