Compare commits

...

2 commits

Author SHA1 Message Date
38129eb856
Add meson.build and Makefile 2024-07-14 20:34:07 -06:00
55a599a88e
Move header files to include dir 2024-07-14 20:33:51 -06:00
6 changed files with 34 additions and 0 deletions

24
Makefile Normal file
View file

@ -0,0 +1,24 @@
C_FILES = $(wildcard src/*.c)
O_FILES = $(C_FILES:src/%.c=build/%.o)
.PHONY: all clean
.DEFAULT: all
all: pihelper
libpihelper: $(O_FILES)
gcc -o $@ $^
pihelper: libpihelper
gcc -o $@ $^
build:
@mkdir -p build
build/%.o: src/%.c | build
gcc -c $< -o $@
clean:
-rm -f $(O_FILES)
-rm -f pihelper
-rm -rf build

10
meson.build Normal file
View file

@ -0,0 +1,10 @@
project('pihelper', 'c')
crypto = dependency('libcrypto')
curl = dependency('libcurl')
jsonc = dependency('json-c')
ssl = dependency('libssl')
incdir = include_directories('include')
lib_dependencies = [ crypto, curl, ssl, jsonc ]
lib_sources = [ 'src/config.c', 'src/log.c', 'src/network.c', 'src/pihelper.c' ]
lib = library('pihelper', lib_sources, include_directories: incdir, dependencies: lib_dependencies)
executable('pihelper', ['src/cli.h', 'src/cli.c'], link_with: lib, include_directories: incdir)