pong/configure.ac
Pradana AUMARS e10599f19a First implementation of Pong
* Movement of ball and rackets are correct
* Score is recorded and displayed on terminal, not on the window
* Ball is represented as a square and not a disc
* Window is fixed and not scalable
* Player controls are E-D (up-down) for Left, I-K (up-down) for Right
* Ball reset parameters are fixed (except for direction)
2021-06-27 16:41:52 +02:00

13 lines
228 B
Plaintext

AC_INIT([pong], [0.1-alpha], [paumars@courrier.dev])
AM_INIT_AUTOMAKE([-Wall -Werror foreign])
AC_PROG_CC
#AC_PROG_LIBTOOL
#AC_CONFIG_HEADERS([config.h])
AC_CONFIG_FILES([
Makefile
src/Makefile
])
AM_PATH_SDL2(2.0)
AC_OUTPUT