Show Makefile syntax highlighted
TARGET_ARCH = linux
CC = g++
OPT = -O3
DEBUG = -g -Wall
OTHER = -Wno-deprecated
CFLAGS = $(OPT) $(OTHER)
# CFLAGS = $(DEBUG) $(OTHER)
MODULE = example_burst
SRCS = example_burst.cpp
OBJS = $(SRCS:.cpp=.o)
include ../Makefile.defs
all: $(EXE)
See more files for this project here