Makefile
515 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
#!smake
LCOPTS = -g
PRDEPTH = ../../
include $(PRDEPTH)/PRdefs
include $(PRDEPTH)/PRrules
HDR = ../hdr
MBI = ../../include
SIMLIB = ../simlib
LCINCS = -I. \
-I$(SIMLIB) \
-I$(HDR) \
-I$(MBI)
TARGETS = filter monitor idf vparse diffvideo
LLDOPTS = -L. -L$(SIMLIB) -limage
LNFLAGS = $(CFLAGS)
LDIRT = filter monitor
default exports install: $(TARGETS)
$(INSTALL) -m 555 -F /usr/sbin $(TARGETS)
filter: filter.c
monitor: monitor.c
idf: idf.c
rdram2new: rdram2new.c
vparse: vparse.c
rampack: rampack.c