summaryrefslogtreecommitdiff
path: root/Makefile
blob: 31a264601df8cb452bf47c24ab92a5450a6025a4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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