You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
PDCursesMod/fb/Makefile

149 lines
2.8 KiB
Makefile

# GNU MAKE Makefile for PDCurses library for Linux framebuffer
#
# Usage: [g]make [DEBUG=Y] [WIDE=Y] [UTF8=Y] [LIBNAME=(name)]
# [DLLNAME=(name)] [DRM=Y] [CHTYPE_32=Y] [target]
#
# where target can be any of:
# [all|demos|libpdcurses.a|testcurs]...
O = o
ifndef PDCURSES_SRCDIR
PDCURSES_SRCDIR = ..
endif
osdir = $(PDCURSES_SRCDIR)/fb
common = $(PDCURSES_SRCDIR)/common
include $(common)/libobjs.mif
RM = rm -f
# If your system doesn't have these, remove the defines here
SFLAGS = -DHAVE_VSNPRINTF -DHAVE_VSSCANF
CFLAGS = -Wall -Wextra -pedantic -Werror
ifeq ($(DEBUG),Y)
CFLAGS += -g -DPDCDEBUG
else
CFLAGS += -O2
endif
CFLAGS += -fPIC
ifeq ($(UTF8),Y)
CFLAGS += -DPDC_WIDE -DPDC_FORCE_UTF8
else
ifeq ($(WIDE),Y)
CFLAGS += -DPDC_WIDE
endif
endif
ifdef CHTYPE_32
CFLAGS += -DCHTYPE_32
endif
LIBNAME=pdcurses
DLLNAME=pdcurses
LIBFLAGS = rv
LIBCURSES = lib$(LIBNAME).a
CC = $(PREFIX)gcc
LIBEXE = $(PREFIX)ar
STRIP = $(PREFIX)strip
ifeq ($(shell uname -s),FreeBSD)
CC = cc
endif
ifeq ($(DLL),Y)
DLL_SUFFIX = .so
LIBEXE = $(CC)
LIBFLAGS = -shared -o
LIBCURSES = lib$(DLLNAME)$(DLL_SUFFIX)
endif
BUILD = $(CC) $(CFLAGS) -I$(PDCURSES_SRCDIR)
LINK = $(CC)
LDFLAGS = $(LIBCURSES)
RANLIB = ranlib
ifeq ($(DRM),Y)
CFLAGS += -DUSE_DRM -I /usr/include/drm -I /usr/include/libdrm
LDFLAGS += -ldrm
endif
ifeq ($(shell uname -s),FreeBSD)
CC = cc
CFLAGS += -DUSE_DRM -I/usr/local/include -I/usr/local/include/libdrm
LDFLAGS += -L /usr/local/lib -ldrm
endif
.PHONY: all libs clean demos tests
all: libs
libs: $(LIBCURSES)
clean:
-$(RM) *.o trace $(LIBCURSES) $(DEMOS) $(TESTS)
demos: libs $(DEMOS)
ifneq ($(DEBUG),Y)
$(STRIP) $(DEMOS)
endif
tests: libs $(TESTS)
ifneq ($(DEBUG),Y)
$(STRIP) $(TESTS)
endif
$(LIBCURSES) : $(LIBOBJS) $(PDCOBJS)
$(LIBEXE) $(LIBFLAGS) $@ $?
ifeq ($(LIBCURSES),lib$(LIBNAME).a)
-$(RANLIB) $@
endif
$(LIBOBJS) $(PDCOBJS) : $(PDCURSES_HEADERS)
$(DEMOS) : $(PDCURSES_CURSES_H) $(LIBCURSES)
$(TESTS) : $(PDCURSES_CURSES_H) $(LIBCURSES)
tui.o tuidemo.o : $(PDCURSES_CURSES_H)
terminfo.o : $(TERM_HEADER)
panel.o ptest: $(PANEL_HEADER)
$(LIBOBJS) : %.o: $(srcdir)/%.c
$(BUILD) $(SFLAGS) -c $<
$(PDCOBJS) : %.o: $(osdir)/%.c
$(BUILD) $(SFLAGS) -c $<
$(DEMOS_EXCEPT_TUIDEMO): %: $(demodir)/%.c
$(BUILD) $(DEMOFLAGS) -o$@ $< $(LDFLAGS)
$(TESTS): %: $(testdir)/%.c
$(BUILD) $(DEMOFLAGS) -o$@ $< $(LDFLAGS)
tuidemo$(E) : tuidemo.o tui.o
$(LINK) tui.o tuidemo.o -o $@ $(LDFLAGS)
tui.o: $(demodir)/tui.c $(demodir)/tui.h
$(BUILD) -c $(DEMOFLAGS) $(demodir)/tui.c
tuidemo.o: $(demodir)/tuidemo.c
$(BUILD) -c $(DEMOFLAGS) $(demodir)/tuidemo.c
include $(demodir)/nctests.mif
install:
ifneq ($(OS),Windows_NT)
cp lib$(DLLNAME).so /usr/local/lib
ldconfig /usr/local/lib
endif
uninstall:
ifneq ($(OS),Windows_NT)
$(RM) /usr/local/lib/lib$(DLLNAME).so
ldconfig /usr/local/lib
endif