mirror of
https://github.com/Telecominfraproject/OpenCellular.git
synced 2025-12-26 09:47:45 +00:00
17 lines
247 B
Makefile
17 lines
247 B
Makefile
name := gfxinit
|
|
|
|
ifeq ($(MAKECMDGOALS),gfx_test)
|
|
prefixed-name := gfx_test
|
|
link-type := program
|
|
GFXINIT_TEST := y
|
|
endif
|
|
|
|
gfxinit-deplibs := libhw
|
|
|
|
libhw-dir ?= ../libhwbase/dest
|
|
include $(libhw-dir)/Makefile
|
|
|
|
gfx_test: $(binary)
|
|
|
|
.PHONY: gfx_test
|