]> Nishi Git Mirror - sp.git/commitdiff
. sp-1.2.0
author諏訪子 <suwako@076.moe>
Thu, 1 Feb 2024 08:13:24 +0000 (17:13 +0900)
committer諏訪子 <suwako@076.moe>
Thu, 1 Feb 2024 08:13:24 +0000 (17:13 +0900)
Makefile

index 73328ee7e1162a8774a8232649c6ae87d0e4ce56..2ffcfb793b514e18d60c0a9699c59cb69554f102 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,7 +1,17 @@
-NAME=sp
-VERSION=1.2.0
-# Linux、Haiku、かIllumos = /usr、FreeBSDかOpenBSD = /usr/local、NetBSD = /usr/pkg
+UNAME_S := $(shell uname -s)
+
+NAME := $(shell cat main.c | grep "const char\* sofname" | awk '{print $$5}' | sed "s/\"//g" | sed "s/;//" )
+VERSION := $(shell cat main.c | grep "const char\* version" | awk '{print $$5}' | sed "s/\"//g" | sed "s/;//" )
 PREFIX=/usr
+ifeq ($(UNAME_S),FreeBSD)
+       PREFIX=/usr/local
+endif
+ifeq ($(UNAME_S),OpenBSD)
+       PREFIX=/usr/local
+endif
+ifeq ($(UNAME_S),NetBSD)
+       PREFIX=/usr/pkg
+endif
 CC=cc
 FILES=main.c showpass.c yankpass.c addpass.c delpass.c listpass.c genpass.c initpass.c otppass.c base32.c
 CFLAGS=-Wall -Wextra -O3 -I${PREFIX}/include -L${PREFIX}/lib