src/world/usr.bin/file/Makefile

13 lines
288 B
Makefile

# Makefile - hhl - /usr/src/world/usr.bin/file
# Copyright 2020 Nathan Fisher <nfisher.sr@gmail.com>
#
progname = file
cflags += -std=gnu99
cflags += -fstack-protector-all
cflags += -fPIE
define post_build
install -Dm644 magic $(DESTDIR)/etc/magic
endef
include hhl.cprog.mk