kmscon/Makefile
David Herrmann bfc6975baf Add console test
This test application prints a console on all connected outputs. It does not
emulate any terminal but instead just prints the test-console.

It can be used to test the console subsystem in connection with the DRM/KMS
output subsystem.

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

29 lines
679 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 cairo` -Isrc
all:
gcc -o kmscon src/*.c $(CFLAGS)
tests:
gcc -o test_output tests/test_output.c src/output.c $(CFLAGS)
gcc -o test_console tests/test_console.c src/output.c src/console.c $(CFLAGS)
clean:
@rm -vf kmscon test_output test_console
.PHONY: all tests clean