GNUmakefile 490 Bytes
#!smake

LCOPTS = -g
PRDEPTH = ../../
include $(PRDEPTH)/PRdefs
CC=$(HOST_CC)
GCINCS=-D_LANGUAGE_C -I$(ROOT)/host_include
GLDOPTS=-L$(ROOT)/host_lib

HDR	= ../hdr
MBI	= ../../include
SIMLIB	= ../simlib

LCINCS	= -I. \
	-I$(SIMLIB) \
	-I$(HDR) \
	-I$(MBI)

TARGETS	= filter monitor idf vparse #diffvideo

LLDLIBS	= -L. -L$(SIMLIB) -limage
LNFLAGS	= $(CFLAGS)

LDIRT	= filter monitor

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

include $(PRDEPTH)/PRrules