.POSIX: PREFIX = /usr/local CFLAGS = -O2 -Wall -Wpedantic 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