CFLAGS=-O2 -I../sysinclude
CC=gcc

all: test

anp82: test.o
	$(CC) test test.o

clean:
	rm -f *.o *~ *# test

.PHONY: all clean
