39 lines
863 B
Makefile
39 lines
863 B
Makefile
TOP=../..
|
|
include $(TOP)/configure/CONFIG
|
|
|
|
# includes to install from this sub-project
|
|
#
|
|
|
|
INC += registry.h
|
|
INC += registryRecordType.h
|
|
INC += registryDeviceSupport.h
|
|
INC += registryDriverSupport.h
|
|
INC += registryFunction.h
|
|
INC += registerRecordDeviceDriver.h
|
|
|
|
|
|
# general contents of library on all platforms
|
|
#
|
|
# system specific lines in RULES.Host figure out
|
|
# 1) what object names (.o, .obj,...) to build
|
|
# 2) where to find the sources: ., ./os/<ARCH_CLASS>, ./os/generic, ...
|
|
#
|
|
|
|
SCRIPTS += registerRecordDeviceDriver.pl
|
|
|
|
LIBSRCS += registry.c
|
|
LIBSRCS += registryRecordType.c
|
|
LIBSRCS += registryDeviceSupport.c
|
|
LIBSRCS += registryDriverSupport.c
|
|
LIBSRCS += registryFunction.c
|
|
|
|
LIBRARY_IOC = registryIoc
|
|
registryIoc_DLL_LIBS = Com
|
|
|
|
registryIoc_RCS_WIN32 = registryIoc.rc
|
|
|
|
OBJS_IOC = registerRecordDeviceDriver
|
|
|
|
include $(TOP)/configure/RULES
|
|
|