blob: 97c6c99d3f2dc4d0bfddd00991e5b8866713d5cf [file] [log] [blame]
Rickard Bolinbc6ee582022-11-04 08:24:29 +00001# SPDX-FileCopyrightText: Copyright 2020 Arm Limited and/or its affiliates <open-source-office@arm.com>
Tim Hall79d07d22020-04-27 18:20:16 +01002#
3# SPDX-License-Identifier: Apache-2.0
4#
5# Licensed under the Apache License, Version 2.0 (the License); you may
6# not use this file except in compliance with the License.
7# You may obtain a copy of the License at
8#
9# www.apache.org/licenses/LICENSE-2.0
10#
11# Unless required by applicable law or agreed to in writing, software
12# distributed under the License is distributed on an AS IS BASIS, WITHOUT
13# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14# See the License for the specific language governing permissions and
15# limitations under the License.
Rickard Bolinbc6ee582022-11-04 08:24:29 +000016#
Tim Hall79d07d22020-04-27 18:20:16 +010017# Description:
18# Makefile to build mlw_codec
19
20UNAME=$(shell uname -o)
21
Michael McGeaghd5cf7652020-12-03 13:53:56 +000022CFLAGS=-Wall -Werror -Wno-unused-variable
23CFLAGS+=-fwrapv -fstack-protector-strong -flto -fuse-linker-plugin -ffat-lto-objects
Tim Hall79d07d22020-04-27 18:20:16 +010024
25ifeq ($(DEBUG),1)
26 CFLAGS+=-g -O0 -DDEBUG
27else
28 CFLAGS+=-O3
29endif
30
31LIBSRCS=mlw_encode.c mlw_decode.c
32LIBHDRS=mlw_encode.h mlw_decode.h mlw_common.h
33
34ifeq ($(UNAME),Cygwin)
35 MLWEXE=mlw_codec.exe
36else
37 MLWEXE=mlw_codec
38endif
39
40all: mlwexe
41
42.PHONY: mlwexe
43mlwexe: $(MLWEXE)
44
45clean:
46 rm -f $(MLWEXE)
47
48$(MLWEXE): mlw_main.c $(LIBSRCS) $(LIBHDRS) makefile
49 gcc $(CFLAGS) mlw_main.c $(LIBSRCS) -o $(MLWEXE) -lm