simh-testsetgenerator/display/Makefile.340
Phil Budne b11fbf6cd4 DISPLAY: Update display code to support DEC Type 340, and 36 switches
Only interface code to Type 340 is for Richard Cornwell's KA10
(but could be used on PDP-1/4/7/9 as well)
2018-02-17 14:37:10 -05:00

13 lines
390 B
Text

# Makefile for type340 test/debug
ALL=tdbg tx
all: $(ALL)
tdbg: tst340.c type340.c Makefile.340 type340.h type340cmd.h
cc -g -o tdbg tst340.c type340.c -DTY340_NODISPLAY -DDEBUG_TY340 -DDUMP
tx: tst340.c type340.c display.c x11.c Makefile.340 ws.h type340.h type340cmd.h display.h
cc -g -o tx tst340.c type340.c display.c x11.c -lm -lX11 -lXt -DDUMP
clean:
rm -f $(ALL)