26 lines
475 B
Makefile
26 lines
475 B
Makefile
# asfur version
|
|
VERSION = 0.1
|
|
|
|
# Customize below to fit your system
|
|
|
|
# paths
|
|
PREFIX = /usr
|
|
MANPREFIX = ${PREFIX}/share/man
|
|
|
|
# OpenBSD (uncomment)
|
|
#MANPREFIX = ${PREFIX}/man
|
|
|
|
# includes and libs
|
|
INCS = -I.
|
|
LIBS = -lssl -lcrypto -lcrypt -luv
|
|
# flags
|
|
CFLAGS := -std=c11 -pedantic -Wall -O0 ${INCS} -DVERSION=\"${VERSION}\"
|
|
CFLAGS := ${CFLAGS} -g
|
|
LDFLAGS = ${LIBS}
|
|
|
|
# Solaris
|
|
#CFLAGS = -fast ${INCS} -DVERSION=\"${VERSION}\"
|
|
#LDFLAGS = ${LIBS}
|
|
|
|
# compiler and linker
|
|
CC = cc
|