2023-10-24 03:04:54 -04:00

17 lines
463 B
Makefile

# TODO: organize files more
# reduce warnings/errors for subdirectory objects
AUTOMAKE_OPTIONS = subdir-objects
# the name of the binary file
bin_PROGRAMS = drogon_dashboard
# Uses shell pkg-config CLI to find and include required libs
AM_CFLAGS = $(shell pkg-config --cflags gtk4)
LIBS = $(shell pkg-config --libs libadwaita-1 gtk4)
# various *.cpp and *.hpp files for the root project; the '\' implies a *newline*
drogon_dashboard_SOURCES = \
src/base.c