Combined the interface set into the datalink_init for all the datalink layers. Changed all the demo programs to use datalink_init instead of specific datalink functions.

This commit is contained in:
skarg
2007-05-25 01:08:42 +00:00
parent 076ee5f3ca
commit 8026dc003b
29 changed files with 123 additions and 295 deletions
+7 -1
View File
@@ -1,4 +1,5 @@
all: readprop writeprop readfile writefile reinit server dcc whohas whois ucov timesync
all: readprop writeprop readfile writefile reinit server dcc \
whohas whois ucov timesync epics
@echo "utilities are in the utils directory"
clean: \
@@ -10,6 +11,7 @@ clean: \
demo/dcc/Makefile \
demo/whohas/Makefile \
demo/timesync/Makefile \
demo/epics/Makefile \
demo/whois/Makefile
( cd demo/readprop ; make clean )
( cd demo/writeprop ; make clean )
@@ -20,6 +22,7 @@ clean: \
( cd demo/dcc ; make clean )
( cd demo/whohas ; make clean )
( cd demo/timesync ; make clean )
( cd demo/epics ; make clean )
( cd demo/whois ; make clean )
readprop: demo/readprop/Makefile
@@ -49,6 +52,9 @@ whohas: demo/whohas/Makefile
timesync: demo/timesync/Makefile
( cd demo/timesync ; make clean ; make ; cp bacts ../../utils )
epics: demo/epics/Makefile
( cd demo/epics ; make clean ; make ; cp bacts ../../utils )
ucov: demo/ucov/Makefile
( cd demo/ucov ; make clean ; make ; cp bacucov ../../utils )