GNUmakefile 429 Bytes
#!smake
#
# Makefile for tools for kanji
#

PRDEPTH = ../..
include $(PRDEPTH)/PRdefs
CC=$(HOST_CC)
GCINCS=-I$(ROOT)/host_include
GLDOPTS=

OPTIMIZER = -g

TARGETS= asccode bincode

CFILES = asccode.c bincode.c

LCINCS = -I. -I$(PRDEPTH)/include
#LCOPTS = -fullwarn -D_DEBUG
LCOPTS = -Wall

LDIRT=		asccode bincode

default: $(TARGETS)

include $(COMMONRULES)

exports install: default
	$(INSTALL) -m 555 -F /usr/sbin $(TARGETS)