forked from hkc/cc-stuff
10 lines
201 B
Makefile
10 lines
201 B
Makefile
|
CPPFLAGS += -Idependencies -Idependencies/mongoose
|
||
|
LDLIBS += -lm
|
||
|
|
||
|
all: img2cpi wsvpn
|
||
|
|
||
|
wsvpn: wsvpn.o dependencies/mongoose/mongoose.o
|
||
|
$(CC) $(LDFLAGS) "$<" $(LOADLIBES) $(LDLIBS) -o "$@"
|
||
|
|
||
|
.PHONY: all
|