mirror of
https://github.com/DrHo1y/orangepi-build.git
synced 2026-03-26 02:26:42 +07:00
21 lines
435 B
Makefile
Executable File
21 lines
435 B
Makefile
Executable File
# ----------------------------------------------------------------------------
|
|
# 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
|