From a51e200990496081929ca9d4cc7f0219359acdd0 Mon Sep 17 00:00:00 2001 From: David Vazgenovich Shakaryan Date: Thu, 16 Jan 2020 01:28:20 -0800 Subject: add COPYING and Makefile --- Makefile | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 Makefile (limited to 'Makefile') diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..31a2646 --- /dev/null +++ b/Makefile @@ -0,0 +1,16 @@ +CFLAGS += -O2 -Wall +LDFLAGS += -lcurl -ljson-c + +TARGET = np + +SRC = $(wildcard *.c) +OBJ = $(SRC:.c=.o) + +all: $(TARGET) + +$(TARGET): $(OBJ) + +clean: + rm -f $(TARGET) $(OBJ) + +.PHONY: all clean -- cgit v1.2.3-70-g09d2