summaryrefslogtreecommitdiff
path: root/extra/Makefile
blob: 0b6c7f7cf7069edd563080f8bb7aac3cbea03ac3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# Copyright (c) 2014 The Chromium OS Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.

PROG= lightbar
HEADERS= simulation.h
SRCS= main.c windows.c input.c ../common/lightbar.c

INCLUDE= -I. -I../include
CFLAGS= -g -Wall -Werror -pthread ${INCLUDE} -DLIGHTBAR_SIMULATION
LDFLAGS = -lX11 -lxcb -lrt

all: ${PROG}

${PROG} : ${SRCS} ${HEADERS} Makefile
	gcc ${CFLAGS} ${SRCS} ${LDFLAGS} -o ${PROG}

.PHONY: clean
clean:
	rm -f ${PROG}