diff options
| author | Your Name <you@example.com> | 2026-05-18 22:46:53 +0530 |
|---|---|---|
| committer | Your Name <you@example.com> | 2026-05-18 22:46:53 +0530 |
| commit | 910fe47b2ed1284d93ff4d274f5c2341cb0d2d0b (patch) | |
| tree | 2c0e48e153337b22dbe7f9cc531f5e92e91561fb /tests/unit/Makefile | |
| parent | f2c4b15c72a2fa89caed5d8a11a4ea9832c48be6 (diff) | |
feat: add on-screen keyboard with layout/hit detection tests
Diffstat (limited to 'tests/unit/Makefile')
| -rw-r--r-- | tests/unit/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/tests/unit/Makefile b/tests/unit/Makefile index 5bc5eb1..b978891 100644 --- a/tests/unit/Makefile +++ b/tests/unit/Makefile | |||
| @@ -22,7 +22,7 @@ LDFLAGS := -lmbedcrypto -lcjson -lm | |||
| 22 | 22 | ||
| 23 | SECP256K1_OBJ := secp256k1.o precomputed_ecmult.o precomputed_ecmult_gen.o | 23 | SECP256K1_OBJ := secp256k1.o precomputed_ecmult.o precomputed_ecmult_gen.o |
| 24 | 24 | ||
| 25 | TESTS := test_geohash test_identity test_nostr_event test_cashu test_session test_tollgate_client test_lnurl_pay test_lightning_payout test_mcp_handler test_nip04 test_cvm_server test_touch | 25 | TESTS := test_geohash test_identity test_nostr_event test_cashu test_session test_tollgate_client test_lnurl_pay test_lightning_payout test_mcp_handler test_nip04 test_cvm_server test_touch test_keyboard |
| 26 | 26 | ||
| 27 | .PHONY: all test clean $(TESTS) | 27 | .PHONY: all test clean $(TESTS) |
| 28 | 28 | ||
| @@ -84,5 +84,8 @@ test_cvm_server: test_cvm_server.c | |||
| 84 | test_touch: test_touch.c $(REPO_ROOT)/main/touch.c | 84 | test_touch: test_touch.c $(REPO_ROOT)/main/touch.c |
| 85 | $(CC) $(CFLAGS) $< $(REPO_ROOT)/main/touch.c -o $@ $(LDFLAGS) | 85 | $(CC) $(CFLAGS) $< $(REPO_ROOT)/main/touch.c -o $@ $(LDFLAGS) |
| 86 | 86 | ||
| 87 | test_keyboard: test_keyboard.c $(REPO_ROOT)/main/keyboard.c | ||
| 88 | $(CC) $(CFLAGS) $< $(REPO_ROOT)/main/keyboard.c -o $@ $(LDFLAGS) | ||
| 89 | |||
| 87 | clean: | 90 | clean: |
| 88 | rm -f $(TESTS) $(SECP256K1_OBJ) | 91 | rm -f $(TESTS) $(SECP256K1_OBJ) |