build changes

This commit is contained in:
Marty Kraimer
2000-02-10 19:06:32 +00:00
parent f69e9f4323
commit e8ae54e916
4 changed files with 37 additions and 6 deletions

View File

@@ -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

View File

@@ -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

View 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);
}

View File

@@ -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