this is my patched version of ii - the suckless irc client.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 lines
748 B

9 months ago
9 months ago
  1. # Customize to fit your system
  2. # paths
  3. PREFIX = /usr/local
  4. BINDIR = ${PREFIX}/bin
  5. MANDIR = ${PREFIX}/share/man
  6. MAN1DIR = ${MANDIR}/man1
  7. DOCDIR = ${PREFIX}/share/doc/ii
  8. # Set the following to install to a different root
  9. DESTDIR =
  10. INCDIR = ${PREFIX}/include
  11. LIBDIR = ${PREFIX}/lib
  12. VERSION = 1.7
  13. # includes and libs
  14. INCLUDES = -I. -I${INCDIR} -I/usr/include
  15. LIBS = -L${LIBDIR} -L/usr/lib -lc -lssl -lcrypto
  16. # uncomment and comment other variables for compiling on Solaris
  17. #LIBS = -L${LIBDIR} -L/usr/lib -lc -lsocket -lnsl
  18. #CFLAGS = -g ${INCLUDES} -DVERSION=\"${VERSION}\"
  19. # compiler
  20. CC = cc
  21. CFLAGS = -g -O0 -W -Wall ${INCLUDES} -DVERSION=\"${VERSION}\"
  22. LDFLAGS = ${LIBS}