Makefile.in
上传用户:knt0001
上传日期:2022-01-28
资源大小:264k
文件大小:1k
源码类别:

Email客户端

开发平台:

C/C++

  1. MAKE = make
  2. VERSION = @VERSION@
  3. SRCDIR = @srcdir@
  4. CC = @CC@
  5. CFLAGS = @CFLAGS@ @DEFS@
  6. LDFLAGS = @LDFLAGS@
  7. LIBS = @LIBS@
  8. DLIB = ../dlib/libdlib.a
  9. prefix = @prefix@
  10. bindir = @bindir@
  11. sbindir = @sbindir@
  12. mandir = @mandir@
  13. sysconfdir = @sysconfdir@
  14. datarootdir = @datarootdir@
  15. FILES = email.o addr_parse.o addy_book.o conf.o error.o execgpg.o file_io.o 
  16.         message.o mimeutils.o processmail.o progress_bar.o 
  17. remotesmtp.o sig_file.o smtpcommands.o utils.o
  18. all: $(FILES)
  19. $(CC) $(CFLAGS) -o email $(FILES) $(OTHER_FILES) $(DLIB) $(LDFLAGS) $(LIBS)
  20. clean:
  21. rm -f *.o *.d email
  22. clean-all:
  23. rm -rf Makefile *.o *.d email