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 $^ > $@