mirror of
https://github.com/logicog/RTLPlayground.git
synced 2026-08-30 14:52:51 +08:00
16 lines
215 B
Makefile
16 lines
215 B
Makefile
CC = gcc
|
|
|
|
all: injector fileadder httpd_sim
|
|
|
|
clean:
|
|
rm *.o
|
|
|
|
injector: injector.c
|
|
gcc $^ -o $@
|
|
|
|
fileadder: fileadder.c
|
|
gcc $^ -o $@
|
|
|
|
httpd_sim: httpd_sim.c httpd_sim.h
|
|
gcc $< -o $@ -I/usr/include/json-c -ljson-c
|