# $Header: Makefile,v 4.300 91/06/09 00:41:24 root Rel41 $ SONY;
# 
#	Makefile of
#		Sample Program for Japanese Convert Library.
#
#				by Sony Corporation
#					
#					1988. 3. 3
#
#
INCLUDE		=
NODEBUG		=
DEBUG		= -DDEBUG
DBGFLAG		= ${NODEBUG}
CFLAGS		= ${DBGFLAG}
SRC		= sample.c
OBJ		= sample.o
JLIB		= -lsj2lib

all: sample

sample: ${OBJ}
	$(CC) -o $@ ${OPT} ${OBJ} ${JLIB}

clean:
	/bin/rm -f ${OBJ} core

cleanup:
	/bin/rm -f ${OBJ} core sample

