* source/rtl/gtsln/Makefile
* source/rtl/gtsln/gtsln.c
* source/rtl/gtsln/kbsln.c
* Applied fixes from Marek Paliwoda <paliwoda@inetia.pl> that lets
the slang GT driver code build on different GNU/Linux distributions
(and possibly other flavours of Un*x).
23 lines
473 B
Makefile
23 lines
473 B
Makefile
#
|
|
# $Id$
|
|
#
|
|
|
|
ROOT = ../../../
|
|
|
|
C_SOURCES=\
|
|
gtsln.c \
|
|
kbsln.c \
|
|
mousesln.c \
|
|
|
|
LIBNAME=gtsln
|
|
|
|
include $(TOP)$(ROOT)config/lib.cf
|
|
|
|
# a workaround of a problem with different include directories
|
|
# for slang header files between different unix distributions
|
|
DUMMYA := $(CFLAGS)
|
|
CFLAGS := -I/usr/include/slang -I/usr/local/include \
|
|
-I/usr/local/include/slang $(DUMMYA)
|
|
|
|
#DUMMYB := $(LDFLAGS)
|
|
#LDFLAGS := -L/usr/lib/slang -L/usr/local/lib -L/usr/local/lib/slang $(DUMMYB)
|