authd/makefile

17 lines
390 B
Makefile
Raw Permalink Normal View History

2024-03-23 11:47:30 +01:00
all: build-server
2023-05-29 20:41:12 +02:00
Q ?= @
2024-12-02 15:48:56 +01:00
# By default, the following makefile rules will use the compiled version
2024-12-11 11:34:45 +01:00
# of the applications (authd, authctl), not the ones from the system
2024-12-02 15:48:56 +01:00
# (in /usr/local/bin/ for example).
# To avoid that, use: "make <rule> LOC="
LOC ?= ./bin/
2024-11-30 12:02:01 +01:00
include mk/build.mk
include mk/install.mk
include mk/setup.mk
include mk/commands.mk
-include mk/migration.mk
-include mk/dev.mk