bson2json/Makefile

17 lines
262 B
Makefile
Raw Permalink Normal View History

2024-01-27 18:59:21 -06:00
.POSIX:
PREFIX = /usr/local
2024-01-27 19:24:51 -06:00
CFLAGS = -O2 -Wall -Wpedantic
2024-01-27 18:59:21 -06:00
build: bson2json
bson2json: bson2json.c
clean:
rm -f bson2json
install: bson2json
mkdir -p $(DESTDIR)$(PREFIX)/bin
cp $< $(DESTDIR)$(PREFIX)/bin
uninstall:
rm -f $(DESTDIR)$(PREFIX)/bin/bson2json