From 6a1e6a7d6b6a3d987f2fccb3c06f4f5da071f504 Mon Sep 17 00:00:00 2001 From: Nicholas Tay Date: Tue, 10 May 2022 00:40:10 +1000 Subject: Dynamic load boards as DLL (windows only for now) The .h files are pretty weird, should look at other C projects to see how they load plugins. This function pointer business with typedefs is kinda weird, not sure where they should live. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index bf2bd8f..cf64742 100644 --- a/Makefile +++ b/Makefile @@ -16,7 +16,7 @@ endif default: $(NAME) -$(NAME): $(NAME).c platform/$(PLATFORM).c boards.h +$(NAME): $(NAME).c platform/$(PLATFORM).c $(CC) $(CFLAGS) $(NAME).c platform/$(PLATFORM).c $(LDLIBS) -o $(NAME) clean: -- cgit