https://github.com/erdc/hello_world
A very simple software package example that includes a Makefile
https://github.com/erdc/hello_world
Last synced: 3 months ago
JSON representation
A very simple software package example that includes a Makefile
- Host: GitHub
- URL: https://github.com/erdc/hello_world
- Owner: erdc
- Created: 2015-01-09T20:51:20.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2015-01-09T20:55:20.000Z (over 11 years ago)
- Last Synced: 2025-12-28T14:02:38.533Z (6 months ago)
- Language: Makefile
- Size: 4.76 MB
- Stars: 0
- Watchers: 6
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# hello_world
A very simple software package example that includes a Makefile
# Things you can do
Call make with no arguments to see what the default `all` target builds
```bash
make
```
Get rid of all intermediate objects and targets `distclean`
```bash
make distclean
```
Make a particular target: `hello`
```bash
make hello
```
Clean the directory of intermediate objects but leave the software executable
```bash
make clean
```