build: Use only one Makefile for apps

- Use one common Makefile for all test device apps.
- Use a single copy of syscall.[Sh].
- Update docs for building.
This commit is contained in:
Michael Cardell Widerkrantz 2025-05-21 12:04:30 +02:00
parent 6e3034c3ce
commit ba17a2b29e
No known key found for this signature in database
GPG key ID: D3DB3DDF57E704E5
13 changed files with 165 additions and 403 deletions

View file

@ -0,0 +1,11 @@
// SPDX-FileCopyrightText: 2024 Tillitis AB <tillitis.se>
// SPDX-License-Identifier: BSD-2-Clause
#include <stdint.h>
#ifndef TKEY_APP_SYSCALL_H
#define TKEY_APP_SYSCALL_H
int syscall(uint32_t number, uint32_t arg1, uint32_t arg2, uint32_t arg3);
#endif