diff options
author | Laurent Pinchart <laurent.pinchart@ideasonboard.com> | 2021-03-05 17:47:33 +0200 |
---|---|---|
committer | Laurent Pinchart <laurent.pinchart@ideasonboard.com> | 2021-03-05 17:55:54 +0200 |
commit | 583bedefc2a247d2cfd32d1b4a0abbe3e2015c70 (patch) | |
tree | 36c387fe06c0c200e36bb2681b51e7fd254ad8f3 /Makefile | |
parent | ea036da1c8028ec91bd9a1b1d6ad978f4f03a748 (diff) |
Move to meson build
Meson makes it much easier to handle cross builds compared to manually
written makefiles. The makefile is kept to avoid build breakages, with a
message now printed to warn that is is deprecated.
Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -5,6 +5,8 @@ CFLAGS ?= -O2 -W -Wall -Iinclude LDFLAGS ?= LIBS := -lrt +$(warning WARNING: Makefile support is deprecated, please switch to meson) + %.o : %.c $(CC) $(CFLAGS) -c -o $@ $< |