OXIESEC PANEL
- Current Dir:
/
/
usr
/
src
/
linux-headers-4.15.0-197
/
tools
/
laptop
/
freefall
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
11/17/2022 06:42:18 AM
rwxr-xr-x
📄
Makefile
282 bytes
11/01/2022 04:52:05 PM
rw-r--r--
Editing: Makefile
Close
# 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)