From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on inbox.vuxu.org X-Spam-Level: X-Spam-Status: No, score=0.2 required=5.0 tests=DKIM_ADSP_CUSTOM_MED, DKIM_INVALID,DKIM_SIGNED,FREEMAIL_FROM,T_SCC_BODY_TEXT_LINE autolearn=no autolearn_force=no version=3.4.4 Received: (qmail 17024 invoked from network); 30 Jan 2022 04:45:39 -0000 Received: from 4ess.inri.net (216.126.196.42) by inbox.vuxu.org with ESMTPUTF8; 30 Jan 2022 04:45:39 -0000 Received: from mail-wr1-f42.google.com ([209.85.221.42]) by 4ess; Sat Jan 29 10:59:22 -0500 2022 Received: by mail-wr1-f42.google.com with SMTP id c23so16745822wrb.5 for <9front@9front.org>; Sat, 29 Jan 2022 07:59:15 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20210112; h=mime-version:from:date:message-id:subject:to; bh=/W9E0eed6/Kvz5qXWVYK1FnDq7c9ekYKTNfgKx3H+7Y=; b=Vy3KYC7pxVIZ1SoQGql1jL9UVIqzdT0pod8BGu2rLhTGH+ep0T8w4ZpnSolqCn+TY1 N9pb2yhr2+LSXyV6GEpoyne0AjWuggWC2wNuVPyVW4RQ8V1eZAtCR/yp0/a+wozcHKc3 UvcqxhQ+/NnAqTD1EKdJFqZiF3jmSE6VCW2kX2mppfSLVhW70uedMk21rO6xyPAcEeYy BulLnt0+Lfa94spcvLVxcrDpMytUw5BPLsxMf5vRi8ujJAsik90uEdtB+DflD6Q8Sk57 oFPs75A+ckh5cEt41BKg28TaTzy6Loy/w8bC1tEX1BPjq9lloMh6rbelJwWi0xLgQCUL TWew== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=x-gm-message-state:mime-version:from:date:message-id:subject:to; bh=/W9E0eed6/Kvz5qXWVYK1FnDq7c9ekYKTNfgKx3H+7Y=; b=A06p1d3Rg7fiLDmy0Nk0jgL2XHzLjcr1SGYH26H8o0x6KERwScgPPCSMG4PWtFYWZY 8yxl1DJPXx9vkBDVq1eJrgHqZ4UUOeM68wvQMcqjGWRN5O3bjWJwKlMQvpksnuQGy4HC uv/vGoLCBlycEQHb3PJIBLnUCTNTt7QnshEiym7nbc+siy4LE2mvsFtrsxDnGFxC3ZZy keXrYky+oFY5gTXrUqrZl3hPNomR+lzP06moQ5vHM1lVdWdPOnjms0q+/EC/0BbtjdKw SrUBc6IEsxiPro7o9JjXhhgXWb6S9gvAEh+o5rHvMkbms4+8bxu5p1lENItDOMGUT0uU U1+A== X-Gm-Message-State: AOAM530ziDsJbzYc8Fbf3/EcxGJEeODqin5frbUHUjtF0VY/jfAGlcuK ZyJisCgYNQQN7j4wt1B3+1lm37yLw0yfyK9bFpWJ27RB5VY= X-Google-Smtp-Source: ABdhPJx9hJRtRL1h0mxpGA7NiZW8ygHxJm7ROO4WQgkHHdoqod7YIl5Olhlz1q58Xl7GVLNdSJ4DiK9ZytaxQmKkX9Q= X-Received: by 2002:a5d:47af:: with SMTP id 15mr11172841wrb.88.1643471954848; Sat, 29 Jan 2022 07:59:14 -0800 (PST) MIME-Version: 1.0 From: Eli Cohen Date: Sat, 29 Jan 2022 07:59:04 -0800 Message-ID: To: 9front@9front.org Content-Type: text/plain; charset="UTF-8" List-ID: <9front.9front.org> List-Help: X-Glyph: ➈ X-Bullshit: stateless hosting persistence software Subject: [9front] android drawterm build Reply-To: 9front@9front.org Precedence: bulk for android drawterm to build, it needs this change to the Makefile clean target: - rm -f *.o */*.o */*.a *.a drawterm drawterm.exe + rm -f *.o */*.o */*/*.o */*.a *.a drawterm drawterm.exe because the libgui object files are nested that deep it also really needs all of these files to build: # new file: gui-android/bin/.keep # new file: gui-android/gen/.keep # new file: gui-android/obj/.keep # new file: gui-android/res/drawable-hdpi/ic_small.png # new file: gui-android/res/drawable-mdpi/ic_small.png # new file: gui-android/res/drawable-xhdpi/ic_small.png # new file: gui-android/res/drawable-xxhdpi/ic_small.png # new file: gui-android/res/drawable-xxxhdpi/ic_small.png # new file: gui-android/res/mipmap-hdpi/ic_launcher.png # new file: gui-android/res/mipmap-mdpi/ic_launcher.png # new file: gui-android/res/mipmap-xhdpi/ic_launcher.png # new file: gui-android/res/mipmap-xxhdpi/ic_launcher.png # new file: gui-android/res/mipmap-xxxhdpi/ic_launcher.png # new file: lib/arm64-v8a/.keep # new file: lib/armeabi-v7a/.keep # new file: lib/x86/.keep # new file: lib/x86_64/.keep those might not have made it onto my github before I was locked out by the concept of passwords being obsoleted another thought, I will try to get to this, of having a separate config file for android build paths with all the long toolchain names would probably be nice