Files
pvxs/Makefile
T
Michael Davidsaver 466044d6a5 initial
2019-10-19 20:17:39 -07:00

18 lines
284 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
include $(TOP)/configure/RULES_TOP