UNIXworkcode

1 # $Id: Makefile.openbsd,v 1.4 2003/11/22 13:03:39 edg Exp $ 2 CC=cc 3 AR=ar 4 5 # For editres, add -DEDITRES to CFLAGS and -lXmu to LIBS 6 # 7 # To evaluate an alternative layout for the Replace/Find dialog, add 8 # -DREPLACE_SCOPE to the CFLAGS. See the README file for more information. 9 # 10 # To test if the Motif library exports the runtime version 11 # add -DHAVE__XMVERSIONSTRING to CFLAGS 12 # 13 14 C_OPT_FLAGS?=-O 15 16 CFLAGS=$(C_OPT_FLAGS) -I/usr/local/include -I/usr/X11R6/include/X11 -DUSE_LPR_PRINT_CMD -DUSE_XMIM `pkg-config --cflags xft fontconfig` 17 LIBS= $(LD_OPT_FLAGS) -L/usr/local/lib -R/usr/local/lib -liconv -lm -lpthread -lXm -lXt -lSM -lICE -lX11 -lXrender -lXext `pkg-config --libs xft fontconfig` 18 19 include Makefile.common 20