Makefile
上传用户:liugui
上传日期:2007-01-04
资源大小:822k
文件大小:1k
源码类别:

代理服务器

开发平台:

Unix_Linux

  1. # Makefile for smb_auth
  2. # SAMBAPREFIX must point to the directory where Samba has been installed.
  3. # By default, Samba is installed in /usr/local/samba. If you changed this
  4. # by using the --prefix option when configuring Samba, you need to change
  5. # SAMBAPREFIX accordingly.
  6. SAMBAPREFIX=/usr/local/samba
  7. # INSTALLBIN is the directory in which both smb_auth and its helper script
  8. # smb_auth.sh, will be installed. smb_auth uses this value to find its
  9. # helper script, so change this before compiling smb_auth.
  10. INSTALLBIN=/usr/local/bin
  11. # End of configuration section
  12. OBJECTS = smb_auth.o
  13. SCRIPT  = smb_auth.sh
  14. CC      = gcc
  15. CFLAGS  = -O2 -Wall 
  16.   -DSAMBAPREFIX="$(SAMBAPREFIX)" -DHELPERSCRIPT="$(INSTALLBIN)/$(SCRIPT)"
  17. smb_auth: $(OBJECTS)
  18. $(CC) -o smb_auth $(OBJECTS)
  19. install: smb_auth
  20. install smb_auth $(SCRIPT) $(INSTALLBIN)
  21. clean:
  22. rm -f smb_auth $(OBJECTS)