Makefile 151 B

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