Files
orangepi-5-plus-kernel/external/cache/sources/brcm_patchram_plus/Makefile

21 lines
435 B
Makefile
Raw Normal View History

2026-02-07 20:22:48 +08:00
# ----------------------------------------------------------------------------
# Makefile for building tapp
#
#
CFLAGS = -Wall -O2
CC = gcc
INSTALL = install
TARGET = brcm_patchram_plus
all: $(TARGET)
$(TARGET): brcm_patchram_plus.c
$(CC) $(CFLAGS) $< -o $@
clean distclean:
rm -rf *.o $(TARGET)
# ----------------------------------------------------------------------------
.PHONY: $(PHONY) install clean distclean