home *** CD-ROM | disk | FTP | other *** search
-
- CC = cl386 -c -W3 -Zi -Oxwt -DSTRICT
- NAME= timewing
- DEF =-DDEBUG -DSTRICT
- RC = rc
- LINK= link32 -map -debug:full -debugtype:cv -out:$(NAME).exe -subsystem:windows
-
- OBJ = $(NAME).obj dib.obj
-
- LIBS = gdi32.lib user32.lib comdlg32.lib wing32.lib winmm.lib
-
- .cpp.obj:
- $(CC) /Fo$*.obj $<
-
- goal: $(NAME).exe
-
- $(NAME).exe: $(OBJ) $(NAME).res $(NAME).def timewing.m32
- $(LINK) $(OBJ) $(LIBS) $(NAME).res
-
- $(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
-
-
-