https://github.com/kaldoran/my-makefile
https://github.com/kaldoran/my-makefile
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/kaldoran/my-makefile
- Owner: kaldoran
- Created: 2016-01-25T13:55:26.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2016-01-25T13:36:24.000Z (over 9 years ago)
- Last Synced: 2025-02-01T10:13:14.811Z (4 months ago)
- Language: Makefile
- Size: 1000 Bytes
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# My-Makefile
Just a Makefile that I use for simple projects.
### Usage
You can edit this variables for your programs :
```makefile
# Debug mode, can modify CXXFLAGS and LDFLAGS.
DEBUG = yesSRC_DIR = src
INC_DIR = src
OBJ_DIR = obj
BIN_DIR = bin# You can add subdirs with any depth like utils/string, utils/math/ ...
SUB_DIRS = utils coreCXX = gcc
CXXFLAGS = -ansi -Wall -Wextra -pedantic
LDFLAGS =
```