Displaying 1 result from an estimated 1 matches for "a_b1".
Did you mean:
a4b1
2015 Aug 28
2
RFC: alloca -- specify rounding factor for allocation (and more)
...tories; files and directories will be owned by you and
# have default permissions.
#
# This archive contains:
#
# Makefile
# types.h
# a_b.c
# a_b_c.c
# main.c
#
echo x - Makefile
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...