28 lines
723 B
Makefile
28 lines
723 B
Makefile
# wmfs version
|
|
VERSION= 201011
|
|
|
|
# Customize below to fit your system
|
|
# x11 xft and freetype2 are REQUIRED, others are optionals
|
|
LIBS= x11 xft freetype2 xrandr xinerama imlib2
|
|
|
|
|
|
# If theses variables are defined, make will not call pkg-config
|
|
#
|
|
# Linux example
|
|
# CFLAGS_LIBS= -I/usr/include/freetype2
|
|
# LDFLAGS_LIBS= -lX11 -lXft -lfreetype -lXrandr -lXinerama -lImlib2
|
|
#
|
|
# FreeBSD example
|
|
# CFLAGS_LIBS= -I/usr/local/include -I/usr/local/include/freetype2
|
|
# LDFLAGS_LIBS= -L/usr/local/lib -lXft -lXrender -lfontconfig -lX11 -lfreetype -lXrandr -lXinerama -lImlib2
|
|
|
|
# paths
|
|
PREFIX= /usr/local
|
|
MANPREFIX= ${PREFIX}/man
|
|
XDG_CONFIG_DIR= /usr/local/etc/xdg/wmfs
|
|
|
|
|
|
# CFLAGS LDFLAGS can be customised here
|
|
C_FLAGS= -Wall
|
|
LD_FLAGS=
|