summaryrefslogtreecommitdiffstats
path: root/Makefile
blob: 1fca1c3df087ff066c816d88b4878437d57c0c71 (plain)
1
2
3
4
5
6
7
8
9
10
11
ARCH = $(shell gcc -dumpmachine)
CFLAGS = -fPIC -fno-strict-aliasing -W -Wall -Wextra -Wformat -Wno-uninitialized -pipe -g -O2 -DARCH=\"$(ARCH)\" -pthread
TARGET = fsp-trace 

all:	$(TARGET)

$(TARGET): fsp-trace.c copyright.c adal_common.c adal_trace.c adal_parse.c
	$(CC) $^ $(CFLAGS) -o $@

clean distclean:
	$(RM) $(TARGET)
OpenPOWER on IntegriCloud