CC=gcc
CFLAGS=-Wall -Werror -static -g -I../

all: aen

aen: aen.c
	${CC} ${CFLAGS} -o aen aen.c

clean:
	rm -f *.o
	rm -f aen aen.c~
