diff options
author | nathansmith117 <nathansmith117@sdf.org> | 2024-05-22 04:51:55 +0000 |
---|---|---|
committer | nathansmith117 <nathansmith117@sdf.org> | 2024-05-22 04:51:55 +0000 |
commit | bdd8d563ff3f0eec41cc45d07f6c00622a531a72 (patch) | |
tree | ceb9cac325b893b20b5d0303e988252136680e03 /rps_game/Makefile | |
download | forgorttonProjects-main.tar.gz forgorttonProjects-main.tar.bz2 forgorttonProjects-main.zip |
Diffstat (limited to 'rps_game/Makefile')
-rw-r--r-- | rps_game/Makefile | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/rps_game/Makefile b/rps_game/Makefile new file mode 100644 index 0000000..7083609 --- /dev/null +++ b/rps_game/Makefile @@ -0,0 +1,8 @@ +all: + @make -C src +debug: + @make -C src debug +clean: + @make -C src clean +%: + @make -C src $@ |