I have a C module I wrote config.h and config.c.
I want to call this from my janet C code.
How do I tell jpm about my config.o module ?
Or where should I put it?
The point is I would prefer not to add any janet code
to the module so I can use it as is from my other c projects
as well.
If I was doing plain C code I would add paths to my Makefile like:
CFLAGS+= -I$(HOME)/code/config
LDFLAGS+= -L$(HOME)/code/config