Article Figure 1 Listing 1 Listing 2 Listing 3
Listing 4 Listing 5 Listing 6 Listing 7 may2001.tar

Listing 7 bc_demo Makefile

# Author: Ed Schaefer
SUNCC=cc
BSDCC=/usr/ucb/cc

serial.o: serial.c intermec.h zebra.h cemarks.h
    $(SUNCC) -c serial.c
tcpip.o: tcpip.c intermec.h zebra.h cemarks.h
    $(BSDCC) -c tcpip.c
bc_demo.o: bc_demo.c 
    $(SUNCC) -c bc_demo.c
bc_demo: serial.o tcpip.o bc_demo.o
    $(BSDCC)  tcpip.o serial.o bc_demo.o -o bc_demo
# End Makefile