Files
hexagonrpc/tools/Makefile
Richard Acayan 3a8ee7ca22 tools: registry: move library flag to end of compiler command
GCC is a bit picky on Alpine Linux and wants `-ljson-c` to be at the end
of the command-line arguments. Move it to the end so the tools can be
built with this requirement.
2023-05-02 18:59:10 -04:00

5 lines
73 B
Makefile

all: registry
registry: registry.c
gcc -o registry registry.c -ljson-c