npm

Nihal's Password Manager (WIP)
git clone git://git.nihaljere.xyz/npm
Log | Files | Refs | LICENSE

commit 600541505e1272c2af7343d00646dcdf66c92bdf
parent 475a3f34a1556db60cf31b7a381b84e1f7096901
Author: Nihal Jere <nihal@nihaljere.xyz>
Date:   Wed, 29 Sep 2021 16:33:18 -0500

rename npm to npm-core.c

Diffstat:
MMakefile | 6+++---
Rnpm.c -> npm-core.c | 0
2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/Makefile b/Makefile @@ -2,7 +2,7 @@ .PHONY: all clean install PREFIX = /usr/local -SRC = npm.c npm-agent.c npmc.c util.c monocypher.c +SRC = npm-core.c npm-agent.c npmc.c util.c monocypher.c OBJ = $(SRC:%.c=%.o) EXE = npm-agent npm-core npmc NPM_CORE = "npm-core" @@ -11,8 +11,8 @@ CFLAGS = '-DNPM_CORE=$(NPM_CORE)' all: npm-core npm-agent npmc -npm-core: $(LIBS) npm.o util.o monocypher.o - $(CC) -static npm.o util.o monocypher.o -o $@ +npm-core: $(LIBS) npm-core.o util.o monocypher.o + $(CC) -static npm-core.o util.o monocypher.o -o $@ npm-agent: npm-agent.o $(CC) -static npm-agent.o -o $@ diff --git a/npm.c b/npm-core.c