
PROG= tinyps
CFLAGS+= -O2

all:	$(PROG)
	gcc -Wall $(CFLAGS) -o $(PROG) $(PROG).c
	strip $(PROG)
