diff options
author | thing1 <thing1@seacrossedlovers.xyz> | 2024-10-07 13:01:30 +0100 |
---|---|---|
committer | thing1 <thing1@seacrossedlovers.xyz> | 2024-10-07 13:01:30 +0100 |
commit | 3564e513623bb3fc4d528d3d29df9aa91dae1396 (patch) | |
tree | 17d60d15b9c21db957ef966fc3eb763fd11fd244 /comp/work/37/Makefile | |
parent | ce61e41c6a14b84808aceb37d5118f23e3affaa0 (diff) |
did some electronics and comp sci work
Diffstat (limited to 'comp/work/37/Makefile')
-rw-r--r-- | comp/work/37/Makefile | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/comp/work/37/Makefile b/comp/work/37/Makefile new file mode 100644 index 0000000..01e2722 --- /dev/null +++ b/comp/work/37/Makefile @@ -0,0 +1,5 @@ +rpn: rpn.c stack.c + cc stack.c -c -o stack.o + cc rpn.c stack.o -o rpn -lm -ggdb +clean: + rm -rf rpn stack.o |