next up previous contents index Search
Next: 0.10.2.2 References Up: 0.10.2 Integer Coding Previous: 0.10.2 Integer Coding

0.10.2.1 Source Code



/* -- Makefile -- */



CC = gcc
 CFLAGS = -O4 
 LIBS = -lm 
 RM = /bin/rm -f
 
 # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
 
 BINARIES	= testgolomb
 
 .c.o:
 	$(CC) $(CFLAGS) -c $< 
 
 all:	$(BINARIES) 
 
 # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
 
 
 testgolomb: testgolomb.o vec.o vbyte.o $(HFILES)
 	$(CC) $(CFLAGS) -o testgolomb testgolomb.o vec.o vbyte.o $(LIBS)
 
 # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
 
 clean:
 	/bin/rm -f a.out core *.o *~ $(BINARIES) 






/* -- def.h -- */



INSERTFILE=/home/scott/algs/code/intcode/def.h






/* -- vec.c -- */



INSERTFILE=/home/scott/algs/code/intcode/vec.c






/* -- vbyte.c -- */



INSERTFILE=/home/scott/algs/code/intcode/vbyte.c






/* -- testgolomb.c -- */



INSERTFILE=/home/scott/algs/code/intcode/testgolomb.c




Scott Gasch
1999-07-09