#.SILENT:

all: threebut threebut2

.c.o:
   sc $*

threebut: mystartup.o generic.o threebut.o
    sc link generic.o threebut.o to threebut
    delete threebut.lnk

threebut2: mystartup.o generic.o threebut2.o
    sc link generic.o threebut2.o to threebut2
    delete threebut2.lnk

threebut.o:  threebut.c
threebut2.o:  threebut2.c

mystartup.o: mystartup.c
