denyhosts/Makefile

13 lines
177 B
Makefile
Raw Normal View History

2019-09-24 08:53:00 +08:00
CROSS_COMPILE ?=
CC := $(CROSS_COMPILE)gcc
2022-06-26 19:49:00 +08:00
CFLAGS += -g -Wall
LIB += -lcurl
2019-09-24 08:53:00 +08:00
OBG = rhost
all: rhost.o
2022-06-26 19:49:00 +08:00
$(CC) $(CFLAGS) $^ -o $(OBG) $(LIB)
2019-09-24 08:53:00 +08:00
clean:
rm -rf *.o
rm $(OBG)