# MAKEFILE - For SAS C v5.10 LMK

C0 = -cus -O                                          # Compiler options
L0 = LC:blink FROM LIB:c.o                            # BLINK leader options
L1 = LIBRARY LIB:lcm.lib LIB:lc.lib LIB:amiga.lib     # BLINK trailer options
L2 =                                                  # DEBUG BLINK options

.c.o:
  LC:lc $(C0) $*

max:      max.o
  $(L0) max.o TO max $(L1) $(L2)

pf1:      pf1.o
  $(L0) pf1.o TO pf1 $(L1) $(L2)

pf2:      pf2.o umain.o wb.o print.o
  $(L0) umain.o lib:lreqglue.o pf2.o wb.o print.o TO pf2 $(L1) $(L2)

max.o:    max.c

pf1.o:    pf1.c pf1.h mlo.h

pf2.o:    pf2.c pf2.h global.h mlo.h

print.o:  print.c pf2.h ext.h mlo.h

umain.o:  umain.c

wb.o:     wb.c pf2.h ext.h aw.h mlo.h
