all: pscreate
PROG=pscreate
OBJ=main.o afm.o cfg.o enc.o err.o ps.o txt.o txt_check.o glyph.o
$(PROG): $(OBJ)
	gcc -o $(PROG) $(OBJ)
	
%.o: %.c
	gcc -g -c -o $@ $<

clean:
	rm -f $(PROG) $(OBJ)
