mirror of
https://github.com/Hizenberg469/Makefile-tutorial.git
synced 2026-04-19 22:02:24 +03:00
18 lines
445 B
Makefile
18 lines
445 B
Makefile
#Flags
|
|
# C program
|
|
CC = gcc
|
|
CFLAGS = -g
|
|
OUTPUT_OPTION = -MMD -MP -o $@
|
|
SHARED_LIBRARY_EXTENSION = so
|
|
SHARED_LIBRARY_FLAG = -shared
|
|
|
|
# C++ program
|
|
#CXX = g++
|
|
#CXXFLAGS = -g
|
|
|
|
# This file can be solely used to configure
|
|
# according the OS and tools used for building
|
|
# programs.
|
|
#
|
|
# This make the Makefile more clean and easy to
|
|
# use.
|