diff options
Diffstat (limited to 'tools/laptop/freefall/Makefile')
-rw-r--r-- | tools/laptop/freefall/Makefile | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/tools/laptop/freefall/Makefile b/tools/laptop/freefall/Makefile new file mode 100644 index 000000000..b572d9425 --- /dev/null +++ b/tools/laptop/freefall/Makefile @@ -0,0 +1,17 @@ +# SPDX-License-Identifier: GPL-2.0 +PREFIX ?= /usr +SBINDIR ?= sbin +INSTALL ?= install + +TARGET = freefall + +all: $(TARGET) + +%: %.c + $(CC) $(CFLAGS) $(LDFLAGS) -o $@ $< + +clean: + $(RM) $(TARGET) + +install: freefall + $(INSTALL) -D -m 755 $(TARGET) $(DESTDIR)$(PREFIX)/$(SBINDIR)/$(TARGET) |