all: term clean;  @echo Do not run term.exe under ms-windows

GCC=gcc -Wall -g -O2

term : term.o ; $(GCC) term.o -o term -lalleg

term.o : term.c ; $(GCC) -c term.c

clean : ; del term
