⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 timer.mak

📁 At can be given its arguments in a file. You can comment out lines by preceding them with either #
💻 MAK
字号:
# 
# Makefile for TIMER.EXE
#
# Compiler        : Microsoft C 6.0
# Created         : 19.8.1992
# Copyright (c)   : Martti Ylikoski, 1992
#
# Notes: The llibcep.lib is the default library in my system
#   and is therefore renamed llibce.lib.

timer.exe: timer.obj queue.obj timer.def timerdos.exe
   link timer.obj queue.obj, , NUL.MAP,llibce mtoolsp, timer.def
   exehdr /PMTYPE:VIO timer.exe
   del timer.obj timerdos.obj timerdos.exe

timerdos.exe: timerdos.obj
   link /NOD   timerdos.obj, timerdos, NUL.MAP, llibcer mtoolsr, ,

timerdos.obj: timerdos.c
   CL -AL -c /Lr timerdos.c

timer.obj: timer.c
   CL -AL -c /Lp timer.c

queue.obj: queue.c
   CL -AL -c /Lp queue.c

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -