first commit

This commit is contained in:
2024-11-08 00:27:08 +05:30
commit 02eed13731
4 changed files with 200 additions and 0 deletions

18
Makefile.config Normal file
View File

@@ -0,0 +1,18 @@
#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.