home · contact · privacy
7DRL: Some population balancing.
[plomrogue] / roguelike-client.do
1 # redo build file to build the executable "roguelike-client".
2
3 # This file is part of PlomRogue. PlomRogue is licensed under the GPL version 3
4 # or any later version. For details on its copyright, license, and warranties,
5 # see the file NOTICE in the root directory of the PlomRogue source package.
6
7 redo-ifchange build/compiler_flags
8 . ./build/compiler_flags
9 mkdir -p build/client
10 mkdir -p build/common
11 for file in src/client/*.c src/common/*.c; do
12   file=build/${file#src/}
13   redo-ifchange ${file%.*}.o
14 done
15 gcc $CFLAGS -o $3 -g build/client/*.o build/common/*.o -lncurses