From 125c4b912102386150991237016fd84c0b74e5f6 Mon Sep 17 00:00:00 2001 From: Kelvin Sherlock Date: Tue, 27 Sep 2016 09:57:15 -0400 Subject: [PATCH] update makefile. --- Makefile | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/Makefile b/Makefile index 42675d1..2a69f54 100644 --- a/Makefile +++ b/Makefile @@ -1,9 +1,20 @@ +SRC = appleIIgs.ti gno-console.ti gsos-console.ti proterm-special.ti + .PHONY : install .PHONY : test test : + tic -v10 -N -c appleIIgs.ti + tic -v10 -N -c gno-console.ti tic -v10 -N -c gsos-console.ti + tic -v10 -N -c proterm-special.ti install : + tic -v10 -N -s appleIIgs.ti + tic -v10 -N -s gno-console.ti tic -v10 -N -s gsos-console.ti + tic -v10 -N -s proterm-special.ti + +all.ti : $(SRC) + cat $^ > $@