2008-11-25 22:58:35 +01:00
|
|
|
############################################################################
|
2008-11-26 16:46:12 +01:00
|
|
|
# graphics/Makefile
|
2008-11-25 22:58:35 +01:00
|
|
|
#
|
2019-04-09 19:32:42 +02:00
|
|
|
# Copyright (C) 2008-2009, 2011-2012, 2016, 2019 Gregory Nutt. All
|
|
|
|
# rights reserved.
|
2012-05-20 18:05:15 +02:00
|
|
|
# Author: Gregory Nutt <gnutt@nuttx.org>
|
2008-11-25 22:58:35 +01:00
|
|
|
#
|
|
|
|
# Redistribution and use in source and binary forms, with or without
|
|
|
|
# modification, are permitted provided that the following conditions
|
|
|
|
# are met:
|
|
|
|
#
|
|
|
|
# 1. Redistributions of source code must retain the above copyright
|
|
|
|
# notice, this list of conditions and the following disclaimer.
|
|
|
|
# 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
# notice, this list of conditions and the following disclaimer in
|
|
|
|
# the documentation and/or other materials provided with the
|
|
|
|
# distribution.
|
|
|
|
# 3. Neither the name NuttX nor the names of its contributors may be
|
|
|
|
# used to endorse or promote products derived from this software
|
|
|
|
# without specific prior written permission.
|
|
|
|
#
|
|
|
|
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
|
|
# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
|
|
|
|
# FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
|
|
|
|
# COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
|
|
# INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
|
|
|
|
# BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
|
|
|
|
# OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
|
|
|
|
# AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
|
|
|
|
# ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
|
|
# POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
#
|
|
|
|
############################################################################
|
|
|
|
|
2020-05-18 21:42:11 +02:00
|
|
|
include $(TOPDIR)/Make.defs
|
2008-11-25 22:58:35 +01:00
|
|
|
|
2016-04-13 23:39:03 +02:00
|
|
|
include nxglib/Make.defs
|
2008-11-28 00:31:37 +01:00
|
|
|
include nxbe/Make.defs
|
|
|
|
include nxmu/Make.defs
|
2014-09-20 23:01:50 +02:00
|
|
|
include nxterm/Make.defs
|
2016-04-13 23:42:56 +02:00
|
|
|
include vnc/Make.defs
|
2008-11-25 22:58:35 +01:00
|
|
|
|
2020-05-19 11:43:29 +02:00
|
|
|
CFLAGS += ${shell $(INCDIR) "$(CC)" $(TOPDIR)$(DELIM)graphics}
|
|
|
|
|
2016-04-13 23:39:03 +02:00
|
|
|
AOBJS = $(ASRCS:.S=$(OBJEXT))
|
|
|
|
COBJS = $(CSRCS:.c=$(OBJEXT))
|
2008-11-25 22:58:35 +01:00
|
|
|
|
2016-04-13 23:39:03 +02:00
|
|
|
SRCS = $(ASRCS) $(CSRCS)
|
|
|
|
OBJS = $(AOBJS) $(COBJS)
|
2008-11-25 22:58:35 +01:00
|
|
|
|
2016-04-13 23:39:03 +02:00
|
|
|
BIN = libgraphics$(LIBEXT)
|
2008-11-25 22:58:35 +01:00
|
|
|
|
2016-04-13 23:39:03 +02:00
|
|
|
all: mklibgraphics
|
2009-12-17 18:53:25 +01:00
|
|
|
.PHONY : context depend clean distclean mklibgraphics gensources gen1bppsources \
|
2008-11-26 20:39:54 +01:00
|
|
|
gen2bppsource gen4bppsource gen8bppsource gen16bppsource gen24bppsource \
|
2013-12-28 16:33:12 +01:00
|
|
|
gen32bppsources
|
2008-11-26 19:59:52 +01:00
|
|
|
|
|
|
|
gen1bppsources:
|
2020-09-14 18:53:37 +02:00
|
|
|
$(Q) $(MAKE) -C nxglib -f Makefile.devblit NXGLIB_BITSPERPIXEL=1 EXTRAFLAGS="$(EXTRAFLAGS)"
|
2019-03-14 20:18:55 +01:00
|
|
|
ifeq ($(CONFIG_NX_RAMBACKED),y)
|
2020-09-14 18:53:37 +02:00
|
|
|
$(Q) $(MAKE) -C nxglib -f Makefile.pwfb NXGLIB_BITSPERPIXEL=1 EXTRAFLAGS="$(EXTRAFLAGS)"
|
2019-03-14 20:18:55 +01:00
|
|
|
endif
|
2008-11-26 19:59:52 +01:00
|
|
|
|
|
|
|
gen2bppsource:
|
2020-09-14 18:53:37 +02:00
|
|
|
$(Q) $(MAKE) -C nxglib -f Makefile.devblit NXGLIB_BITSPERPIXEL=2 EXTRAFLAGS="$(EXTRAFLAGS)"
|
2019-03-14 20:18:55 +01:00
|
|
|
ifeq ($(CONFIG_NX_RAMBACKED),y)
|
2020-09-14 18:53:37 +02:00
|
|
|
$(Q) $(MAKE) -C nxglib -f Makefile.pwfb NXGLIB_BITSPERPIXEL=2 EXTRAFLAGS="$(EXTRAFLAGS)"
|
2019-03-14 20:18:55 +01:00
|
|
|
endif
|
2008-11-26 19:59:52 +01:00
|
|
|
|
|
|
|
gen4bppsource:
|
2020-09-14 18:53:37 +02:00
|
|
|
$(Q) $(MAKE) -C nxglib -f Makefile.devblit NXGLIB_BITSPERPIXEL=4 EXTRAFLAGS="$(EXTRAFLAGS)"
|
2019-03-14 20:18:55 +01:00
|
|
|
ifeq ($(CONFIG_NX_RAMBACKED),y)
|
2020-09-14 18:53:37 +02:00
|
|
|
$(Q) $(MAKE) -C nxglib -f Makefile.pwfb NXGLIB_BITSPERPIXEL=4 EXTRAFLAGS="$(EXTRAFLAGS)"
|
2019-03-14 20:18:55 +01:00
|
|
|
endif
|
2008-11-26 19:59:52 +01:00
|
|
|
|
|
|
|
gen8bppsource:
|
2020-09-14 18:53:37 +02:00
|
|
|
$(Q) $(MAKE) -C nxglib -f Makefile.devblit NXGLIB_BITSPERPIXEL=8 EXTRAFLAGS="$(EXTRAFLAGS)"
|
2019-03-14 20:18:55 +01:00
|
|
|
ifeq ($(CONFIG_NX_RAMBACKED),y)
|
2020-09-14 18:53:37 +02:00
|
|
|
$(Q) $(MAKE) -C nxglib -f Makefile.pwfb NXGLIB_BITSPERPIXEL=8 EXTRAFLAGS="$(EXTRAFLAGS)"
|
2019-03-14 20:18:55 +01:00
|
|
|
endif
|
2019-04-09 19:32:42 +02:00
|
|
|
ifeq ($(CONFIG_NX_SWCURSOR),y)
|
2020-09-14 18:53:37 +02:00
|
|
|
$(Q) $(MAKE) -C nxglib -f Makefile.cursor NXGLIB_BITSPERPIXEL=8 EXTRAFLAGS="$(EXTRAFLAGS)"
|
2019-04-09 19:32:42 +02:00
|
|
|
endif
|
2008-11-26 19:59:52 +01:00
|
|
|
|
|
|
|
gen16bppsource:
|
2020-09-14 18:53:37 +02:00
|
|
|
$(Q) $(MAKE) -C nxglib -f Makefile.devblit NXGLIB_BITSPERPIXEL=16 EXTRAFLAGS="$(EXTRAFLAGS)"
|
2019-03-14 20:18:55 +01:00
|
|
|
ifeq ($(CONFIG_NX_RAMBACKED),y)
|
2020-09-14 18:53:37 +02:00
|
|
|
$(Q) $(MAKE) -C nxglib -f Makefile.pwfb NXGLIB_BITSPERPIXEL=16 EXTRAFLAGS="$(EXTRAFLAGS)"
|
2019-03-14 20:18:55 +01:00
|
|
|
endif
|
2019-04-09 19:32:42 +02:00
|
|
|
ifeq ($(CONFIG_NX_SWCURSOR),y)
|
2020-09-14 18:53:37 +02:00
|
|
|
$(Q) $(MAKE) -C nxglib -f Makefile.cursor NXGLIB_BITSPERPIXEL=16 EXTRAFLAGS="$(EXTRAFLAGS)"
|
2019-04-09 19:32:42 +02:00
|
|
|
endif
|
2008-11-26 19:59:52 +01:00
|
|
|
|
|
|
|
gen24bppsource:
|
2020-09-14 18:53:37 +02:00
|
|
|
$(Q) $(MAKE) -C nxglib -f Makefile.devblit NXGLIB_BITSPERPIXEL=24 EXTRAFLAGS="$(EXTRAFLAGS)"
|
2019-03-14 20:18:55 +01:00
|
|
|
ifeq ($(CONFIG_NX_RAMBACKED),y)
|
2020-09-14 18:53:37 +02:00
|
|
|
$(Q) $(MAKE) -C nxglib -f Makefile.pwfb NXGLIB_BITSPERPIXEL=24 EXTRAFLAGS="$(EXTRAFLAGS)"
|
2019-03-14 20:18:55 +01:00
|
|
|
endif
|
2019-04-09 19:32:42 +02:00
|
|
|
ifeq ($(CONFIG_NX_SWCURSOR),y)
|
2020-09-14 18:53:37 +02:00
|
|
|
$(Q) $(MAKE) -C nxglib -f Makefile.cursor NXGLIB_BITSPERPIXEL=24 EXTRAFLAGS="$(EXTRAFLAGS)"
|
2019-04-09 19:32:42 +02:00
|
|
|
endif
|
2008-11-26 19:59:52 +01:00
|
|
|
|
|
|
|
gen32bppsources:
|
2020-09-14 18:53:37 +02:00
|
|
|
$(Q) $(MAKE) -C nxglib -f Makefile.devblit NXGLIB_BITSPERPIXEL=32 EXTRAFLAGS="$(EXTRAFLAGS)"
|
2019-03-14 20:18:55 +01:00
|
|
|
ifeq ($(CONFIG_NX_RAMBACKED),y)
|
2020-09-14 18:53:37 +02:00
|
|
|
$(Q) $(MAKE) -C nxglib -f Makefile.pwfb NXGLIB_BITSPERPIXEL=32 EXTRAFLAGS="$(EXTRAFLAGS)"
|
2019-03-14 20:18:55 +01:00
|
|
|
endif
|
2019-04-09 19:32:42 +02:00
|
|
|
ifeq ($(CONFIG_NX_SWCURSOR),y)
|
2020-09-14 18:53:37 +02:00
|
|
|
$(Q) $(MAKE) -C nxglib -f Makefile.cursor NXGLIB_BITSPERPIXEL=32 EXTRAFLAGS="$(EXTRAFLAGS)"
|
2019-04-09 19:32:42 +02:00
|
|
|
endif
|
2011-07-20 00:45:15 +02:00
|
|
|
|
2013-12-28 16:33:12 +01:00
|
|
|
gensources: gen1bppsources gen2bppsource gen4bppsource gen8bppsource gen16bppsource gen24bppsource gen32bppsources
|
2008-11-25 22:58:35 +01:00
|
|
|
|
|
|
|
$(AOBJS): %$(OBJEXT): %.S
|
|
|
|
$(call ASSEMBLE, $<, $@)
|
|
|
|
|
|
|
|
$(COBJS): %$(OBJEXT): %.c
|
|
|
|
$(call COMPILE, $<, $@)
|
|
|
|
|
2008-11-26 20:39:54 +01:00
|
|
|
$(BIN): $(OBJS)
|
2012-11-15 18:43:29 +01:00
|
|
|
$(call ARCHIVE, $@, $(OBJS))
|
2008-11-25 22:58:35 +01:00
|
|
|
|
2013-12-28 16:33:12 +01:00
|
|
|
mklibgraphics: $(BIN)
|
2008-11-26 20:39:54 +01:00
|
|
|
|
2020-07-22 09:54:29 +02:00
|
|
|
.depend: gensources Makefile $(SRCS) $(TOPDIR)$(DELIM).config
|
2020-03-23 03:44:03 +01:00
|
|
|
$(Q) $(MKDEP) $(DEPPATH) "$(CC)" -- $(CFLAGS) -- $(SRCS) >Make.dep
|
|
|
|
$(Q) touch $@
|
2008-11-25 22:58:35 +01:00
|
|
|
|
2020-03-23 03:44:03 +01:00
|
|
|
depend: .depend
|
2008-11-25 22:58:35 +01:00
|
|
|
|
2019-12-03 13:38:53 +01:00
|
|
|
clean_context:
|
2020-09-14 18:53:37 +02:00
|
|
|
$(Q) $(MAKE) -C nxglib -f Makefile.devblit distclean EXTRAFLAGS="$(EXTRAFLAGS)"
|
|
|
|
$(Q) $(MAKE) -C nxglib -f Makefile.pwfb distclean EXTRAFLAGS="$(EXTRAFLAGS)"
|
|
|
|
$(Q) $(MAKE) -C nxglib -f Makefile.cursor distclean EXTRAFLAGS="$(EXTRAFLAGS)"
|
2019-12-03 13:38:53 +01:00
|
|
|
|
2009-12-17 18:53:25 +01:00
|
|
|
context: gensources
|
|
|
|
|
2008-11-25 22:58:35 +01:00
|
|
|
clean:
|
2012-11-20 16:47:41 +01:00
|
|
|
$(call DELFILE, $(BIN))
|
2008-11-25 22:58:35 +01:00
|
|
|
$(call CLEAN)
|
|
|
|
|
2019-12-03 13:38:53 +01:00
|
|
|
distclean: clean clean_context
|
2012-11-20 16:47:41 +01:00
|
|
|
$(call DELFILE, Make.dep)
|
2020-03-23 03:44:03 +01:00
|
|
|
$(call DELFILE, .depend)
|
2008-11-25 22:58:35 +01:00
|
|
|
|
|
|
|
-include Make.dep
|