Skip to content

Commit

Permalink
Moving Makefile include files into a distinct directory
Browse files Browse the repository at this point in the history
  • Loading branch information
tpiekarski committed Aug 19, 2020
1 parent eac6294 commit e061ff4
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,12 @@
#
#

SHELL:=/bin/bash
SHELL := /bin/bash
SELF_DIR := $(dir $(lastword $(MAKEFILE_LIST)))
MAKE_INCLUDE := $(SELF_DIR)/include/make

include $(SELF_DIR)/debug.mk
include $(SELF_DIR)/tests.mk
include $(MAKE_INCLUDE)/debug.mk
include $(MAKE_INCLUDE)/tests.mk

ccflags-y := -I$(SELF_DIR)/include $(DEBUG_FLAGS) -std=gnu99 -Wall -Wno-declaration-after-statement
obj-m += lkm_debugfs.o lkm_device.o lkm_device_numbers.o lkm_mem.o lkm_mev.o lkm_parameters.o lkm_pp.o lkm_proc.o lkm_process.o lkm_sandbox.o lkm_skeleton.o
Expand Down
File renamed without changes.
File renamed without changes.

0 comments on commit e061ff4

Please sign in to comment.