mirror of
https://github.com/Hizenberg469/Makefile-tutorial.git
synced 2026-04-20 06:12:23 +03:00
17 lines
422 B
Makefile
17 lines
422 B
Makefile
#Flags
|
|
# C program
|
|
CC = @CC@
|
|
CFLAGS = -g
|
|
OUTPUT_OPTION = -MMD -MP -o $@
|
|
SHARED_LIBRARY_EXTENSION = so
|
|
SHARED_LIBRARY_FLAG = -shared
|
|
|
|
# C++ program
|
|
#CXX = g++
|
|
#CXXFLAGS = -g
|
|
|
|
|
|
# These kind of files are used as an input
|
|
# for autoconf tools to automatically
|
|
# configure makefile based on the OS and
|
|
# tools used.
|