Files
pvxs/example/Makefile
T
Michael Davidsaver ceeb782e8a ensure CONFIG_PVXS_MODULE is idempotent
seems that cfg/ files can sometimes be included
multiple times.
2020-03-18 21:12:59 -07:00

32 lines
685 B
Makefile

TOP=..
include $(TOP)/configure/CONFIG
# cfg/ sometimes isn't correctly included due to a Base bug
# so we do here (maybe again) as workaround
include $(TOP)/configure/CONFIG_PVXS_MODULE
include $(TOP)/configure/CONFIG_PVXS_VERSION
#----------------------------------------
# ADD MACRO DEFINITIONS AFTER THIS LINE
#=============================
PROD_LIBS += pvxs Com
TESTPROD += mailbox
mailbox_SRCS += mailbox.cpp
TESTPROD += spam
spam_SRCS += spam.cpp
TESTPROD += ticker
ticker_SRCS += ticker.cpp
TESTPROD += client
client_SRCS += client.cpp
#===========================
include $(TOP)/configure/RULES
#----------------------------------------
# ADD RULES AFTER THIS LINE