# Makefile for Netscape Hangul PS file filter
# Lee yongjae, setup@shiva.snu.ac.kr, 1996.5.18.

CC = gcc

ALL = nhpf

.c.o:
	$(CC) -c $<

all: $(ALL)
clean:
	rm -f $(ALL) *.o

nhpf: nhpf.o font.o ncode.o
	$(CC) -o nhpf nhpf.o font.o ncode.o

nhpf.o: ncode.h

