Add bootstrap_analysis_tool/Makefile
This commit is contained in:
parent
d6e7ff2194
commit
3d429e0f60
1 changed files with 18 additions and 0 deletions
18
bootstrap_analysis_tool/Makefile
Normal file
18
bootstrap_analysis_tool/Makefile
Normal file
|
|
@ -0,0 +1,18 @@
|
||||||
|
CC=gcc
|
||||||
|
CFLAGS=-std=c11 -O2 -Wall -Wextra -pedantic
|
||||||
|
LDFLAGS=
|
||||||
|
|
||||||
|
TARGET=bootstrap_tool
|
||||||
|
|
||||||
|
all: $(TARGET)
|
||||||
|
|
||||||
|
$(TARGET): main.o
|
||||||
|
$(CC) $(CFLAGS) -o $@ $^ $(LDFLAGS)
|
||||||
|
|
||||||
|
main.o: main.c
|
||||||
|
$(CC) $(CFLAGS) -c main.c
|
||||||
|
|
||||||
|
clean:
|
||||||
|
rm -f $(TARGET) main.o
|
||||||
|
|
||||||
|
.PHONY: all clean
|
||||||
Loading…
Reference in a new issue