CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
orangepi-xunlong

Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place. Commercial Alternative to JupyterHub.

GitHub Repository: orangepi-xunlong/orangepi-build
Path: blob/next/external/cache/sources/brcm_patchram_plus/Makefile
Views: 3959
# ----------------------------------------------------------------------------
# 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