Displaying 1 result from an estimated 1 matches for "xreus".
Did you mean:
xregs
2015 Aug 28
2
RFC: alloca -- specify rounding factor for allocation (and more)
...efile
sed 's/^X//' >Makefile << 'END-of-Makefile'
XCFLAGS=-g -O3 -DNDEBUG
X
X
Xall: reuse noreuse
X
Xa_b1.o: a_b.c
X $(CC) $(CFLAGS) -c -o $@ -DREUSE=0 $+
X
Xa_b2.o: a_b.c
X $(CC) $(CFLAGS) -c -o $@ -DREUSE=1 $+
X
Xnoreuse: a_b1.o a_b_c.o main.o
X $(CC) -o $@ $(CFLAGS) $+
X
Xreuse: a_b2.o a_b_c.o main.o
X $(CC) -o $@ $(CFLAGS) $+
X
Xclean:
X rm *.o noreuse reuse
X
X
Xreuse.shar: Makefile *.h *.c
X shar $+ > $@
X
END-of-Makefile
echo x - types.h
sed 's/^X//' >types.h << 'END-of-types.h'
Xstruct param_a_b
X{
X int a;
X int b;
X};
X
X
Xstru...