Files
RTLPlayground/tools/Makefile
T
2025-09-26 21:00:47 +02:00

17 lines
258 B
Makefile

CC = gcc
CCFLAGS = -Wall -o
all: injector fileadder httpd_sim
clean:
rm *.o
injector: injector.c
gcc $^ $(CCFLAGS) $@
fileadder: fileadder.c
gcc $^ $(CCFLAGS) $@
httpd_sim: httpd_sim.c httpd_sim.h
gcc $< $(CCFLAGS) $@ -I/usr/include/json-c -ljson-c