diff options
author | Raymaekers Luca <raymaekers.luca@gmail.com> | 2024-03-22 01:25:05 +0100 |
---|---|---|
committer | Raymaekers Luca <raymaekers.luca@gmail.com> | 2024-03-22 01:25:05 +0100 |
commit | 535de78034b347a3407aa6ff5287a1b4897172ea (patch) | |
tree | c0787523f460064b5671b703123f7e9f42a59a45 /templates/c.make |
First commit!
Diffstat (limited to 'templates/c.make')
-rw-r--r-- | templates/c.make | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/templates/c.make b/templates/c.make new file mode 100644 index 0000000..2af2129 --- /dev/null +++ b/templates/c.make @@ -0,0 +1,4 @@ +FILE = + +$(FILE): $(FILE).cpp + gcc -Wall -Werror -g $(FILE).cpp -o $(FILE) |