DrogonCMS/Makefile.am

17 lines
463 B
Makefile
Raw Normal View History

2023-10-11 15:14:44 -04:00
# 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
2023-10-23 01:37:15 -04:00
AM_CFLAGS = $(shell pkg-config --cflags gtk4)
LIBS = $(shell pkg-config --libs libadwaita-1 gtk4)
2023-10-11 15:14:44 -04:00
2023-10-17 22:21:01 -04:00
# various *.cpp and *.hpp files for the root project; the '\' implies a *newline*
2023-10-11 15:14:44 -04:00
drogon_dashboard_SOURCES = \
2023-10-24 03:04:54 -04:00
src/base.c
2023-10-23 01:37:15 -04:00