blob: 6eb418dd79e768e8b229b4f05f97293abc64fbea [file] [log] [blame]
Tim Hall79d07d22020-04-27 18:20:16 +01001# Copyright (C) 2020 Arm Limited or its affiliates. All rights reserved.
2#
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.
16
17
18# Description:
19# Makefile to build mlw_codec
20
21UNAME=$(shell uname -o)
22
23CFLAGS=-Wall -Wno-unused-function -Wno-unused-variable
24
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