mirror of
https://github.com/logicog/RTLPlayground.git
synced 2026-08-30 14:52:51 +08:00
13 lines
124 B
Makefile
13 lines
124 B
Makefile
CC = gcc
|
|
|
|
all: injector fileadder
|
|
|
|
clean:
|
|
rm *.o
|
|
|
|
injector: injector.c
|
|
gcc $^ -o $@
|
|
|
|
fileadder: fileadder.c
|
|
gcc $^ -o $@
|