Makefile 151 B

12345678910
  1. # SPDX-License-Identifier: GPL-2.0
  2. CC := $(CROSS_COMPILE)gcc
  3. CFLAGS := -I../../usr/include
  4. PROGS := crc32hash
  5. all: $(PROGS)
  6. clean:
  7. rm -fr $(PROGS)