!include ..\build.mif

CFLAGS = -zW -oaxt -d1 -w4
!ifeq WIN386 1
CC = wcc386p
!else
CC = wccp
!endif
NAME = shootgal

LNK = $(name).lnk

OBJS = $(name).obj

$(name).exe : $(OBJS) $(name).res $(LNK)
    wlink @$(LNK)
!ifeq WIN386 1
    wbind $(name) -R $(name).res
!else
    rc $(name).res
    copy /b $(name).exe+$(name).sym
    del $(name).sym
!endif
    
$(name).res : $(name).rc bolt.ico clock.ico gun.cur keyboard.ico mouse.ico &
			scroll.ico $(name).ico target.bmp
    rc -r $(name).rc
    
$(LNK) : makefile ..\build.mif
    %create $(LNK)
    @%append $(LNK) debug all
!ifeq WIN386 1
    @%append $(LNK) sys win386
    @%append $(LNK) option mindata=100K
    @%append $(LNK) option maxdata=100K
!else
    @%append $(LNK) sys windows
    @%append $(LNK) option heapsize=1k
    @%append $(LNK) option symfile = $(name).sym
    @%append $(LNK) library windows
!endif
    @%append $(LNK) option stack=7k
    @%append $(LNK) name $(name)
    @for %i in ($(OBJS)) do @%append $(LNK) file %i
        
$(name).obj : $(name).c $(name).h
	$(CC) $(CFLAGS) $[*
