diff options
author | Louie S <louie@example.com> | 2022-12-09 16:20:47 -0800 |
---|---|---|
committer | Louie Shprung <lshprung@scu.edu> | 2022-12-10 16:38:00 -0800 |
commit | 86c818d83e2ccf91efed4fcffd49ed3a5d44a173 (patch) | |
tree | d3c98b85cbc8b1f02138fd4e7250e6411eb9cbcd /src/Makefile.am | |
parent | d0c84fc07e29ef8b4abb390831ddb71e5bd220cf (diff) |
Replace crude Makefile with Autotools build system
Diffstat (limited to 'src/Makefile.am')
-rw-r--r-- | src/Makefile.am | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/Makefile.am b/src/Makefile.am new file mode 100644 index 0000000..eef8b12 --- /dev/null +++ b/src/Makefile.am @@ -0,0 +1,3 @@ +bin_PROGRAMS = simple_snake +simple_snake_SOURCES = body.c draw.c body.h +simple_snake_LDADD = -lncurses -lm |