mirror of
https://github.com/caiwx86/small-packages.git
synced 2026-07-29 09:51:41 +08:00
7 lines
181 B
Makefile
7 lines
181 B
Makefile
OBJS:=appfilter_user.o appfilter_netlink.o appfilter_ubus.o appfilter_config.o utils.o main.o
|
|
EXEC:=oafd
|
|
all: $(OBJS)
|
|
$(CC) -o $(EXEC) $(OBJS) $(LIBS)
|
|
clean:
|
|
rm $(EXEC) *.o
|