mirror of
https://github.com/thead-yocto-mirror/video_memory
synced 2026-06-21 17:22:25 +02:00
48 lines
1.4 KiB
Makefile
48 lines
1.4 KiB
Makefile
# Copyright 2018 VeriSilicon. All Rights Reserved.
|
|
# This program is free software; you can redistribute it and/or
|
|
# modify it under the terms of the GNU General Public License
|
|
# as published by the Free Software Foundation; either version 2
|
|
# of the License, or (at your option) any later version.
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with this program; if not, write to the Free Software
|
|
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
|
|
# USA.
|
|
|
|
DEBUG ?= n
|
|
ifeq ($(DEBUG),y)
|
|
DEBFLAGS = -O -g -DVIDMEM_DEBUG
|
|
else
|
|
DEBFLAGS = -O2
|
|
endif
|
|
|
|
EXTRA_CFLAGS += $(DEBFLAGS)
|
|
|
|
ifneq ($(KERNELRELEASE),)
|
|
# recursive call from kernel build system
|
|
|
|
vidmem-objs := video_memory.o rsvmem_pool.o
|
|
obj-m += vidmem.o
|
|
|
|
else
|
|
|
|
#KDIR := /export/Testing/Board_Version_Control/SW_Common/SOCLE_MDK-3D/openlinux/2.6.29/v0_5/android_linux-2.6.29
|
|
KVER := $(shell uname -r)
|
|
KDIR := /lib/modules/$(KVER)/build
|
|
|
|
PWD := $(shell pwd)
|
|
|
|
all:
|
|
$(MAKE) -C $(KDIR) M=$(PWD) modules
|
|
|
|
endif
|
|
|
|
clean:
|
|
rm -rf *.o *~ core .depend .*.cmd *.ko *.mod.c .tmp_versions *.mod
|
|
rm -rf modules.order Module.symvers
|