Parent Directory
|
Revision Log
Save gc_basic_call_model code/tests if we ever want to revive
1 ####################################################################### 2 # makefile for UNIX GlobalCall demo programs 3 # 4 # IMPORTANT: 5 # This makefile must be configured for your particular 6 # operating system. See the "Operating System section" 7 # below. 8 # 9 # Modify this makefile to match your specific configuration. 10 # 11 ######################################################################## 12 13 14 ######################################################################## 15 # Operating System section begin 16 17 # Linux 18 # 19 OS_CFLAGS = -Wall 20 SYSLIBS = 21 22 # Solaris 23 # 24 #OS_CFLAGS = 25 #SYSLIBS = 26 27 # UnixWare 7 28 # 29 #OS_CFLAGS = 30 #SYSLIBS = 31 32 # Operating System section end 33 ######################################################################## 34 35 CFLAGS = -g $(OS_CFLAGS) -I$(INTEL_DIALOGIC_INC) -Dlint 36 37 # Intel Dialogic libraries to use 38 # Handle both SR5.1 and SR6/later 39 LIBS = -L$(INTEL_DIALOGIC_LIB) -lgc 40 41 OBJS_GC_BASIC_CALL_MODEL = gc_basic_call_model.o 42 43 44 45 all: gc_basic_call_model 46 47 gc_basic_call_model: $(OBJS_GC_BASIC_CALL_MODEL) 48 $(CC) $(OBJS_GC_BASIC_CALL_MODEL) $(LIBS) $(SYSLIBS) -o $@ 49 50 clean: 51 rm -f *.o gc_basic_call_model 52
| No admin address has been configured | ViewVC Help |
| Powered by ViewVC 1.0.8 |