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

📄 makefile

📁 -
💻
字号:
# Makefile for smb_auth# SAMBAPREFIX must point to the directory where Samba has been installed.# By default, Samba is installed in /usr/local/samba. If you changed this# by using the --prefix option when configuring Samba, you need to change# SAMBAPREFIX accordingly.SAMBAPREFIX=/usr/local/samba# INSTALLBIN is the directory in which both smb_auth and its helper script# smb_auth.sh, will be installed. smb_auth uses this value to find its# helper script, so change this before compiling smb_auth.INSTALLBIN=/usr/local/bin# End of configuration sectionOBJECTS = smb_auth.oSCRIPT  = smb_auth.shCC      = gccCFLAGS  = -O2 -Wall \	  -DSAMBAPREFIX=\"$(SAMBAPREFIX)\" -DHELPERSCRIPT=\"$(INSTALLBIN)/$(SCRIPT)\"smb_auth: $(OBJECTS)	$(CC) -o smb_auth $(OBJECTS)install: smb_auth	install smb_auth $(SCRIPT) $(INSTALLBIN)clean:	rm -f smb_auth $(OBJECTS)

⌨️ 快捷键说明

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