build changes
This commit is contained in:
@@ -42,7 +42,6 @@ SRCS += dbBkpt.c
|
||||
SRCS += dbConvert.c
|
||||
SRCS += dbFastLinkConv.c
|
||||
SRCS += dbNotify.c
|
||||
SRCS += iocInit.c
|
||||
SRCS += dbScan.c
|
||||
SRCS += dbEvent.c
|
||||
SRCS += dbTest.c
|
||||
@@ -55,6 +54,7 @@ SRCS += dbCa.c
|
||||
SRCS += initHooks.c
|
||||
SRCS += dbcar.c
|
||||
|
||||
OBJS_IOC += iocInit
|
||||
|
||||
LIBRARY_IOC = db
|
||||
DLL_LIBS = dbStaticIoc Com
|
||||
|
||||
@@ -2,7 +2,13 @@ TOP=../../..
|
||||
|
||||
include $(TOP)/configure/CONFIG
|
||||
|
||||
PROD_LIBS += db dbStaticHost Com
|
||||
#PROD_LIBS += db ca dbStaticHost Com
|
||||
|
||||
callbackTestHost_SRCS += callbackTestMain.c callbackTest.c
|
||||
PROD += callbackTestHost
|
||||
OBJS_IOC += callbackTest
|
||||
|
||||
|
||||
include $(TOP)/configure/RULES
|
||||
|
||||
|
||||
25
src/db/test/callbackTestMain.c
Normal file
25
src/db/test/callbackTestMain.c
Normal file
@@ -0,0 +1,25 @@
|
||||
/* callbackTestMain.c */
|
||||
/* Author: Marty Kraimer Date: 26JAN2000 */
|
||||
|
||||
/********************COPYRIGHT NOTIFICATION**********************************
|
||||
This software was developed under a United States Government license
|
||||
described on the COPYRIGHT_UniversityOfChicago file included as part
|
||||
of this distribution.
|
||||
****************************************************************************/
|
||||
|
||||
#include <stddef.h>
|
||||
#include <stdlib.h>
|
||||
#include <stddef.h>
|
||||
#include <string.h>
|
||||
#include <stdio.h>
|
||||
|
||||
void *pdbbase=NULL;
|
||||
|
||||
void callbackTest(void);
|
||||
|
||||
int main(int argc,char *argv[])
|
||||
{
|
||||
callbackTest();
|
||||
printf("main terminating\n");
|
||||
return(0);
|
||||
}
|
||||
@@ -18,14 +18,14 @@ INC += guigroup.h
|
||||
LIBSRCS += dbStaticLib.c
|
||||
LIBSRCS += dbYacc.c
|
||||
LIBSRCS += dbPvdLib.c
|
||||
Db_SRCS += dbStaticNoRun.c
|
||||
dbStatic_SRCS += dbStaticRun.c
|
||||
dbStaticHost_SRCS += dbStaticNoRun.c
|
||||
dbStaticIoc_SRCS += dbStaticRun.c
|
||||
|
||||
|
||||
# Library to build:
|
||||
#
|
||||
LIBRARY_HOST += Db
|
||||
LIBRARY_IOC += dbStatic
|
||||
LIBRARY_HOST += dbStaticHost
|
||||
LIBRARY_IOC += dbStaticIoc
|
||||
|
||||
DLL_LIBS = Com
|
||||
|
||||
@@ -35,7 +35,7 @@ PROD = dbReadTest dbExpand dbToMenuH dbToRecordtypeH
|
||||
|
||||
# libs needed by PROD:
|
||||
#
|
||||
PROD_LIBS := Db Com
|
||||
PROD_LIBS := dbStaticHost Com
|
||||
Db_DIR=.
|
||||
|
||||
include $(TOP)/configure/RULES
|
||||
|
||||
Reference in New Issue
Block a user