acms_example: acms.o acms_example.o
	cc -g acms.o acms_example.o -lm -o acms_example
acms_eo: acmso.o acms_example.o
	cc -g acmso.o acms_example.o -lm -o acms_eo
acms.o: acms.c
	cc -g -c acms.c
acmso.o: acms.c
	cc -g -c acms.c -D OPT_RND -o acmso.o
acms_example.o: acms_example.c
	cc -g -c acms_example.c
clean:
	-rm *.o *~ a.out core acms_example
