From 21809b8983e348cb0cea79646dfa2603a9c06b5f Mon Sep 17 00:00:00 2001 From: Randy Rossi Date: Thu, 13 Feb 2020 19:48:30 -0500 Subject: [PATCH] make_machines.sh should also compile common and plus4emu --- make_machines.sh | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/make_machines.sh b/make_machines.sh index a8cd0dd3..cd9758d0 100755 --- a/make_machines.sh +++ b/make_machines.sh @@ -19,6 +19,10 @@ echo "Need arg [pi0|pi2|pi3|pi4]" exit fi +cd third_party/common +make +cd ../.. + cd third_party/vice-3.3 make x64 make x128 @@ -27,6 +31,10 @@ make xplus4 make xpet cd ../.. +cd third_party/plus4emu +make +cd ../.. + MACHINES="C64:c64 C128:c128 VIC20:vic20 Plus4:plus4 Plus4Emu:plus4emu PET:pet" for m in $MACHINES