forked from hkc/cc-stuff
1
0
Fork 0
cc-stuff/Makefile

10 lines
201 B
Makefile
Raw Normal View History

CPPFLAGS += -Idependencies -Idependencies/mongoose
LDLIBS += -lm
all: img2cpi wsvpn
wsvpn: wsvpn.o dependencies/mongoose/mongoose.o
$(CC) $(LDFLAGS) "$<" $(LOADLIBES) $(LDLIBS) -o "$@"
.PHONY: all