1 # $Id: Makefile.cygwin,v 1.00 2021/05/25 19:00:00 efa Exp $
2 # tested on Cygwin64 3.2.0(0.340/5/3) 2021-03-29
3 # dependencies: libiconv-devel, libXpm-devel, libXrender-devel, libXft-devel, libfontconfig-devel, libXm-devel
4
5 CC=cc
6 AR=ar
7
8 CFLAGS=-O -std=gnu99 -I/usr/X11R6/include -I/usr/include/X11 -DUSE_LPR_PRINT_CMD $(shell pkg-config --cflags xft fontconfig) -DXNE_TEXTFIELD
9
10 ARFLAGS=-urs
11
12 LIBS=-L/usr/X11R6/lib -liconv -lXm -lXt -lX11 -lXrender -lm -lpthread $(shell pkg-config --libs xft fontconfig)
13
14 include Makefile.common
15