#Envirnoment
INCS    = C:
LIBS    = C:o.stubs

# Toolflags:
CCflags      = -apcs 3/32 -c -Wnp -fah -depend !Depend -throwback -I$(INCS)
C++flags     = -apcs 3/32 -c -Wnp -fah -depend !Depend -throwback -I$(INCS)
Linkflags    = -O $@
ObjAsmflags  = -apcs 3/32 -depend !Depend -ThrowBack
CMHGflags    = -32bit -depend !Depend -throwBack 
LibFileflags = -c -o $@
Squeezeflags = -v $@

# Final targets 
All:	@.serlist

@.serlist: serlist.o
        Link $(Linkflags) serlist.o $(LIBS)

# Static dependencies:
SUFFIXES: .o .s .c .c++
.s.o:;   objasm $(objasmflags) $<
.c.o:;   cc     $(ccflags)     $<
.c++.o:; c++    $(c++flags)    $<

# Dynamic dependencies:
