summaryrefslogtreecommitdiffstats
path: root/tools/laptop/freefall/Makefile
diff options
context:
space:
mode:
authorJonathan Corbet <corbet@lwn.net>2015-06-08 17:04:11 -0600
committerJonathan Corbet <corbet@lwn.net>2015-06-08 17:04:11 -0600
commitf8785d94fc4e93cacbdb930ec3654fc035a375ec (patch)
treeacc108fa14eee8503e42c2f014091d2f9b02ee3a /tools/laptop/freefall/Makefile
parent8d13be53384866cc30cb09cb32afca04f902f523 (diff)
parent0d03943c0b50ad47ec6bb157a5d02d6ba9da477e (diff)
downloadop-kernel-dev-f8785d94fc4e93cacbdb930ec3654fc035a375ec.zip
op-kernel-dev-f8785d94fc4e93cacbdb930ec3654fc035a375ec.tar.gz
Merge branch 'doc/4.2' into docs-next
Diffstat (limited to 'tools/laptop/freefall/Makefile')
-rw-r--r--tools/laptop/freefall/Makefile17
1 files changed, 17 insertions, 0 deletions
diff --git a/tools/laptop/freefall/Makefile b/tools/laptop/freefall/Makefile
new file mode 100644
index 0000000..48c6c93
--- /dev/null
+++ b/tools/laptop/freefall/Makefile
@@ -0,0 +1,17 @@
+PREFIX ?= /usr
+SBINDIR ?= sbin
+INSTALL ?= install
+CC = $(CROSS_COMPILE)gcc
+
+TARGET = freefall
+
+all: $(TARGET)
+
+%: %.c
+ $(CC) $(CFLAGS) $(LDFLAGS) -o $@ $<
+
+clean:
+ $(RM) $(TARGET)
+
+install: freefall
+ $(INSTALL) -D -m 755 $(TARGET) $(DESTDIR)$(PREFIX)/$(SBINDIR)/$(TARGET)
OpenPOWER on IntegriCloud