CC=gcc
#CFLAGS=-Wall -g
#CFLAGS=-Wall -O2

cmix: mix.c
	$(CC) $(CFLAGS) mix.c -o $@
	strip $@

install: 

distclean:
	rm -f cmix *~ *.o core
