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

Email客户端

开发平台:

C/C++

  1. # Dlib makefile
  2. MAKE = make
  3. VERSION = @ver@
  4. SRCDIR = src/
  5. DESTDIR = 
  6. CC = @CC@
  7. CFLAGS = @CFLAGS@ @DEFS@
  8. LDFLAGS = @LDFLAGS@
  9. LIBS = @LIBS@
  10. prefix = @prefix@
  11. exec_prefix = @exec_prefix@
  12. bindir = @bindir@
  13. sbindir = @sbindir@
  14. mandir = @mandir@
  15. docdir = @docdir@
  16. sysconfdir = @sysconfdir@
  17. datarootdir = @datarootdir@
  18. bin_suffix = @EXEEXT@
  19. FILES = src/dnet.o src/dhash.o src/dlist.o src/dstrbuf.o src/dutil.o src/dvector.o
  20. .PHONY: all clean-all clean distclean install uninstall
  21. all: $(FILES)
  22. ar rc libdlib.a $(FILES)
  23. test:
  24. $(CC) $(CFLAGS) -o test test.c libdlib.a -lm
  25. dlisttest:
  26. $(CC) $(CFLAGS) -o dlisttest dlisttest.c libdlib.a -lm
  27. dhashtest:
  28. $(CC) $(CFLAGS) -o dhashtest dhashtest.c libdlib.a -lm
  29. clean:
  30. rm -f src/*.o *.so *.a test