developer | 6f1fc75 | 2022-02-10 17:24:44 +0800 | [diff] [blame] | 1 | # |
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 | |||||
8 | all: crc32sum | ||||
9 | |||||
10 | crc32sum: crc32sum.c | ||||
11 | $(CC) $(CFLAGS) -O2 -ggdb -MD -o $@ $< $(LDFLAGS) | ||||
12 | |||||
13 | clean: | ||||
14 | rm -f crc32sum crc32sum.d | ||||
15 | |||||
16 | .PHONY: clean | ||||
17 | |||||
18 | -include crc32sum.d |