home *** CD-ROM | disk | FTP | other *** search
- ######################################################################
- #
- # lmkfile to build SCSIutil
- #
- # Gary Duncan - 13 May 92
- #
- # Lattice 5.10
- #
- ######################################################################
-
- CFLAGS = -dLATTICE -v -d3 -cs -cu -b0
-
- # -ms = short code optimize -v = no stack overflow check
- # -d0 = no debug info -cu = unsigned chars by default
- # -d3 = full debug info -b0 = 32 bit addressing for statics etc
- # -cs = one copy per string -m3 = code for 68030
- # -H = read precompiled header -ph = write precompiled header
- # -rr = register arguments ND = strip debug information
-
- ###ADDSYM = ADDSYM
- ADDSYM =
-
- O=O/
- LIBS= lib:lc.lib lib:amiga.lib
- INCS= scsi_priv.h
-
- all : SCSIutil
-
- SCSIutil : $(O)SCSIutil.o
- blink FROM lib:c.o $(O)SCSIutil.o TO SCSIutil LIB \
- $(LIBS) $(ADDSYM) NOICONS
-
- $(O)SCSIutil.o : SCSIutil.c $(INCS)
- lc -o$(O) $(CFLAGS) SCSIutil
-
- indent:
- indent -gnu SCSIutil.c
-