kmscon/Makefile
David Herrmann 71ffc2bda3 Add temporary Makefile
This makefile can be used to build kmscon and the test suite. It is quite rough
and will later or sooner be replaced by a proper build-tool like autotools.

Signed-off-by: David Herrmann <dh.herrmann@googlemail.com>
2011-11-20 00:21:49 +01:00

28 lines
581 B
Makefile

#
# kmscon - Makefile
# Written 2011 by David Herrmann <dh.herrmann@googlemail.com>
#
#
# To compile the kmscon application, use:
# $ make
# To compile the test suites, use:
# $ make tests
#
# This makefile is in no way complete nor sophisticated. If you have time to
# replace it with autotools, I would be glad to apply your patches.
#
CFLAGS=-g -O0 -Wall `pkg-config --cflags --libs egl gbm gl` -Isrc
all:
gcc -o kmscon src/*.c $(CFLAGS)
tests:
gcc -o test_output tests/test_output.c src/output.c $(CFLAGS)
clean:
@rm -vf kmscon test_output
.PHONY: all tests clean