Makefile
380 Bytes
#!smake
#
# Makefile for tools for kanji
#
PRDEPTH = ../..
include $(PRDEPTH)/PRdefs
OPTIMIZER = -g
TARGETS= asccode bincode
CFILES = asccode.c bincode.c
LCINCS = -I. -I$(PRDEPTH)/include
#LCOPTS = -fullwarn -D_DEBUG
LCOPTS = -fullwarn
LDIRT= asccode bincode
default: $(TARGETS)
include $(COMMONRULES)
exports install: default
$(INSTALL) -m 555 -F /usr/sbin $(TARGETS)