Build system: Started using pkg-config for finding the link flags and cflags for ncursesw

This commit is contained in:
(Tim) Efthimis Kritikos 2024-02-20 15:36:12 +00:00
parent 893e44f20a
commit 4da500e5ec

View File

@ -24,7 +24,7 @@ else
Q =
endif
CFLAGS=-O2
CFLAGS::=-O2 $(shell pkg-config ncursesw --cflags)
ifeq "${PROFILING}" "1"
CFLAGS += -pg
@ -39,7 +39,7 @@ all:${MAIN_ROM}
first: ${OBJECT_FILES}
${QUIET_LINK}
${Q}gcc -ggdb $^ -lncursesw -ltinfow -lm -o $@ ${LDFLAGS}
${Q}gcc -ggdb $^ $(shell pkg-config --libs ncursesw) -lm -o $@ ${LDFLAGS}
gprof:
gprof first -b|less