aboutsummaryrefslogtreecommitdiff
path: root/Makefile
blob: 967cd04aa3c8aab69aa0461d9aa71d147590539d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#
# Makefile
#
# Copyright (C) 2014 Zoran Markovic <zoran.markovic@linaro.org>
#
# This file is subject to the terms and conditions of the GNU General Public
# License version 2.
#
CFLAGS?=-g -Wall
CC?=gcc

OBJS = idlestat.o topology.o trace.o utils.o

default: idlestat

idlestat: $(OBJS)
	$(CC) ${CFLAGS} $(OBJS) -o $@

clean:
	rm -f $(OBJS) idlestat