~ubuntu-branches/ubuntu/wily/sysdig/wily

« back to all changes in this revision

Viewing changes to driver/Makefile

  • Committer: Package Import Robot
  • Author(s): Evgeni Golov
  • Date: 2014-05-01 14:53:09 UTC
  • mfrom: (1.1.1)
  • Revision ID: package-import@ubuntu.com-20140501145309-yy0hkts9nlu43omp
Tags: 0.1.81-1
* New upstream release
* Add B-D on zlib1g-dev and use it for building
* drop LuaJIT from debian/copyright, upstream does not ship the
  copy anymore
* Only require and execute dh_dkms when building arch-independent
  stuff

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
sysdig-probe-y += main.o flags_table.o ppm_events.o ppm_fillers.o event_table.o syscall_table.o
2
 
obj-m += sysdig-probe.o
3
 
ccflags-y := 
4
 
 
5
 
KERNELDIR               ?= /lib/modules/$(shell uname -r)/build
6
 
 
7
 
TOP := $(shell pwd)
8
 
all:
9
 
        make -C $(KERNELDIR) M=$(TOP) modules
10
 
 
11
 
clean:
12
 
        make -C $(KERNELDIR) M=$(TOP) clean
13
 
 
14
 
install: all
15
 
        make -C $(KERNELDIR) M=$(TOP) modules_install