makefile

来自「一个很好的unix网络编程框架」· 代码 · 共 28 行

TXT
28
字号
# nmake makefile to set up the source directory for windows

CP = copy

all : source init

source :
	$(CP) makefile.win ..\makefile
	$(CP) skel.h ..

init :
	-mkdir ..\sys
	-mkdir ..\netinet
	-mkdir ..\arpa
	$(CP) unistd.h ..
	$(CP) ip.h ..\netinet
	$(CP) nf ..\netdb.h
	$(CP) nf ..\sys\socket.h
	$(CP) nf ..\sys\wait.h
	$(CP) nf ..\sys\time.h
	$(CP) nf ..\sys\resource.h
	$(CP) nf ..\netinet\in.h
	$(CP) nf ..\netinet\in_systm.h
	$(CP) nf ..\netinet\ip_icmp.h
	$(CP) nf ..\netinet\udp.h
	$(CP) nf ..\arpa\inet.h

⌨️ 快捷键说明

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