#
# gcc sunos.4.1.3 needs -D__USE_FIXED_PROTOTYPES__ to remove all the
# occurence of warning message completely
# 
#
CC=gcc
CFLAGS = -Wall -g -D__USE_FIXED_PROTOTYPES__
.PHONY:# all banner hbanner mkbit

HEADERS=defs.h common.h
all: banner hbanner mkbit

banner: banner.o common.o
	gcc -o banner banner.o common.o

hbanner: hbanner.o hangul.o common.o
	gcc -o hbanner hbanner.o hangul.o common.o
mkbit: mkbit.o
	gcc -o mkbit mkbit.o

#
#
#
clean:
	rm -f core *.o hbanner banner mkbit
ctags0:
	ctags banner.c common.c $(HEADERS)
ctags1:
	ctags hbanner.c hangul.c common.c  $(HEADERS)
ctags2:
	ctags mkbit.c
