• This project
    • Loading...
  • Sign in

손지언 / 2019102185

%ea%b7%b8%eb%a6%bc1
Go to a project
Toggle navigation Toggle navigation pinning
  • Projects
  • Groups
  • Snippets
  • Help
  • Project
  • Activity
  • Repository
  • Graphs
  • Network
  • Create a new issue
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • OSSPractice
  • lab5-2
  • hookerp
  • dhooker
  • Makefile
  • 손지언's avatar
    d · 6013cb18
    6013cb18
    손지언 authored 2022-02-09 07:58:13 +0000
Makefile 237 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12
obj-m := hooker.o

KDIR=/root/working/linux
PWD=$(shell pwd)
TOOLCHAIN=arm-linux-gnueabihf-
TARGET=arm

all:
	$(MAKE) -C $(KDIR) M=$(PWD) ARCH=$(TARGET) CROSS_COMPILE=$(TOOLCHAIN) modules

clean:
	$(MAKE) -C $(KDIR) SUBDIRS=$(PWD) clean