Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/shadmansaleh/makehelper-c
Creates a small Makefile for small c projects in c
https://github.com/shadmansaleh/makehelper-c
Last synced: about 2 months ago
JSON representation
Creates a small Makefile for small c projects in c
- Host: GitHub
- URL: https://github.com/shadmansaleh/makehelper-c
- Owner: shadmansaleh
- Created: 2020-04-30T08:49:15.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2022-11-27T13:38:45.000Z (about 2 years ago)
- Last Synced: 2024-10-12T22:49:11.946Z (3 months ago)
- Language: C
- Size: 31.3 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
### Makehelper
Makehelper is a small utility for genarating
simple Makefiles.It is mainly for small projects where you are
using a few files and all are going to get
complied to a single binary. And you don't feel
like doing`gcc 1.c 2.c 3.c 4.c -o out`
all the time Nor do you want to write a build
script for it . Plus theres no point in compiling
the files that haven't been changed.If you are writting in c/c++ you can just use
this.`makehelper -u -o program_name`
if you use -u makehelper will search for c files
in your directory and subderectories and create a
Makefile with default flags to complie a binary
named programe_nameIt allows you to specify all the flags as
commandline arguments checkout`makehelper -h`
By defalut it uses clang.
If you wana change The default flags they are in
the main.c :)