Files
pvxs/Makefile
T
Michael Davidsaver 879949706f doc example mailbox
2020-02-27 08:21:50 -08:00

21 lines
327 B
Makefile

# Makefile at top of application tree
TOP = .
include $(TOP)/configure/CONFIG
# Directories to build, any order
DIRS += configure
DIRS += src
src_DEPEND_DIRS = configure
DIRS += tools
tools_DEPEND_DIRS = src
DIRS += test
test_DEPEND_DIRS = src
DIRS += example
example_DEPEND_DIRS = src
include $(TOP)/configure/RULES_TOP