diff --git a/Makefile b/Makefile index dc98514..8efebe5 100644 --- a/Makefile +++ b/Makefile @@ -3,7 +3,7 @@ all: build clean: rm -rf build/* -LIBS != pkg-config --libs-only-l --libs-only-L sdl3 sdl3-image sdl3-ttf +LIBS != pkg-config --libs-only-l --libs-only-L sdl3 sdl3-image HARE_SOURCES != find . -name '*.ha' diff --git a/README.md b/README.md index df2c376..d8cbfc8 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,6 @@ Uxn/Varvara Emulator written in the hare programming language. - hare - sdl3 - sdl3-image -- sdl3-ttf - [hare-sdl3](https://git.sr.ht/~sircmpwn/hare-sdl3) To install hare-sdl3, the source must be copied into the HAREPATH third-party directory. diff --git a/cmd/meadow/main.ha b/cmd/meadow/main.ha index b5fced6..abaab1a 100644 --- a/cmd/meadow/main.ha +++ b/cmd/meadow/main.ha @@ -1,6 +1,5 @@ use sdl3; use sdl3::image; -use sdl3::ttf; use types::c; use os; use io;