diff options
author | thing1 <thing1@seacrossedlovers.xyz> | 2024-10-07 12:59:43 +0100 |
---|---|---|
committer | thing1 <thing1@seacrossedlovers.xyz> | 2024-10-07 12:59:43 +0100 |
commit | ce61e41c6a14b84808aceb37d5118f23e3affaa0 (patch) | |
tree | 8e6b7bea499ddd598c7096ef85e2aa19e85498b6 /comp/lucas-standen-NEA/code2/autodoc/Makefile | |
parent | 69c8e84587d934545bdb9d21b292463428ebee93 (diff) |
added comments to all of zpy and made the compiler have useful error msgs and for the most part not segv fault
Diffstat (limited to 'comp/lucas-standen-NEA/code2/autodoc/Makefile')
-rw-r--r-- | comp/lucas-standen-NEA/code2/autodoc/Makefile | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/comp/lucas-standen-NEA/code2/autodoc/Makefile b/comp/lucas-standen-NEA/code2/autodoc/Makefile new file mode 100644 index 0000000..76ef5c1 --- /dev/null +++ b/comp/lucas-standen-NEA/code2/autodoc/Makefile @@ -0,0 +1,11 @@ +autodoc: autodoc.c + cc autodoc.c -o autodoc -ggdb + +install: autodoc + cp autodoc /usr/local/bin/autodoc + +uninstall: + rm /usr/local/bin/autodoc + +clean: + rm autodoc |