home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
CD-ROM User 1995 January
/
CDuser6Jan95.iso
/
WING
/
DOGGIE.MK_
/
DOGGIE.MK
Wrap
Text File
|
1994-06-24
|
726b
|
39 lines
CC = cl -c -W3 -AS -G3 -Gs -GA -Oxwt $(DEF)
ASM = masm -Mx
LINK= link /NOE/NOD/MAP/AL:16/NOPACKCODE
NAME= doggie
DEF = -DSTRICT
RC = rc
OBJDIR = .
OBJ = $(OBJDIR)\$(NAME).obj $(OBJDIR)\dib.obj $(OBJDIR)\tblt.obj $(OBJDIR)\fast32.obj
LIBS = libw slibcew commdlg wing mmsystem
.c{$(OBJDIR)}.obj:
$(CC) /Fo$*.obj $<
.asm{$(OBJDIR)}.obj:
$(ASM) $<,$*.obj;
goal: $(NAME).exe
$(NAME).exe: $(OBJ) $(NAME).res $(NAME).def doggie.mk
$(LINK) $(OBJ), $(NAME), $(NAME),$(LIBS), $(NAME).def
rc $(NAME).res
-mapsym $(NAME).map
$(NAME).res: $(NAME).rc $(NAME).ico
$(RC) -r $(NAME).rc
clean:
del $(NAME).exe
del *.res
del *.err
del *.obj
del *.map
del *.sym
del *.cod
del *.pdb