-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
executable file
·45 lines (36 loc) · 1.27 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
#*************************************************************************
# Copyright (c) 2002 The University of Chicago, as Operator of Argonne
# National Laboratory.
# Copyright (c) 2002 The Regents of the University of California, as
# Operator of Los Alamos National Laboratory.
# This file is distributed subject to a Software License Agreement found
# in the file LICENSE that is included with this distribution.
#*************************************************************************
#
# $Id$
#
TOP = ../..
include $(TOP)/configure/CONFIG
INC += EzcaScan.h
USR_CFLAGS = -DACCESS_SECURITY
ifdef WIN32
# Use the following line if building ezca to be called from
# Visual Basic or other languages
#SHARED_LIBRARIES=YES
# Use the following line to build EzcaScan and ezcaIDL as
# standlone DLLs, i.e. without the need for ezca.dll in the path.
SHARED_LIBRARIES=NO
else
SHARED_LIBRARIES=YES
endif
LIBRARY_HOST := EzcaScan
EzcaScan_SRCS = EzcaFunc.c EzcaHash.c EzcaArray.c EzcaUtil.c \
EzcaMonitor.c EzcaScan.c EzcaQueue.c
EzcaFunc_CPPFLAGS += -DBASE_3_14
EzcaScan_LIBS += ezca ca Com
EzcaScan_SYS_LIBS_WIN32 = ws2_32 advapi32 user32
#PROD_LIBS += EzcaScan ezca ca Com
#PROD_HOST = caget caput
#caget_SRCS = caget.c
#caput_SRCS = caput.c
include $(TOP)/configure/RULES