Add trace_agg_logger/Makefile
This commit is contained in:
parent
8f1f04e9b5
commit
a38980d3b8
1 changed files with 16 additions and 0 deletions
16
trace_agg_logger/Makefile
Normal file
16
trace_agg_logger/Makefile
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
CC=gcc
|
||||
CFLAGS=-Wall -Wextra -std=c11 -O2
|
||||
TARGET=trace_agg_logger
|
||||
|
||||
all: $(TARGET)
|
||||
|
||||
$(TARGET): main.o
|
||||
$(CC) $(CFLAGS) -o $(TARGET) main.o
|
||||
|
||||
main.o: main.c
|
||||
$(CC) $(CFLAGS) -c main.c
|
||||
|
||||
clean:
|
||||
rm -f $(TARGET) main.o
|
||||
|
||||
.PHONY: all clean
|
||||
Loading…
Reference in a new issue