28 lines
395 B
Makefile
28 lines
395 B
Makefile
all: tomlc99.a ptQueue.a libws.a
|
|
|
|
tomlc99:
|
|
@git clone https://github.com/cktan/tomlc99
|
|
|
|
tomlc99.a: tomlc99
|
|
@make -C tomlc99 libtoml.a
|
|
|
|
|
|
ptQueue:
|
|
@git clone git@192.168.8.167:nikto_b/ptQueue.git
|
|
|
|
ptQueue.a: ptQueue
|
|
@make -C ptQueue
|
|
|
|
wsServer:
|
|
@git clone https://github.com/Theldus/wsServer
|
|
|
|
libws.a: wsServer
|
|
@make -C wsServer
|
|
|
|
clean:
|
|
@rm -rf wsServer ptQueue tomlc99
|
|
|
|
|
|
.PHONY: all clean
|
|
|