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_simple
SRCS = example_simple.cpp
OBJS = $(SRCS:.cpp=.o)
include ../Makefile.defs
all: $(EXE)
See more files for this project here