# $Header: Makefile,v 4.300 91/06/09 00:54:10 root Rel41 $ SONY;
# 
#	Makefile of
#		Sample Program for Japanese Convert Library.
#
#		Copyright (c) 1990 Sony Corporation
#		All Rights Reserved
#					
#					1990. 9. 23
#
#
INCLUDE		=
CFLAGS		= 
SRC		= sample.c
OBJ		= sample.o
JLIB		= -lsj3lib

all: sample

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

${OBJ}: ${SRC}
	$(CC) $(CFLAGS) $(INCLUDE) -c $(SRC)

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

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

