blob: f66cc398b42f0e984a61f8ce45c7c8b42e579af8 [file] [log] [blame]
developer6f1fc752022-02-10 17:24:44 +08001#
2# Copyright (C) 2021 MediaTek Inc. All rights reserved.
3#
4# This is free software, licensed under the GNU General Public License v2.
5# See /LICENSE for more information.
6#
7
8all: crc32sum
9
10crc32sum: crc32sum.c
11 $(CC) $(CFLAGS) -O2 -ggdb -MD -o $@ $< $(LDFLAGS)
12
13clean:
14 rm -f crc32sum crc32sum.d
15
16.PHONY: clean
17
18-include crc32sum.d