comparison srogue/main.c @ 101:15f8229f38c1

srogue: begin porting to autoconf. Super-Rogue can now be built with './configure && make', though 'make install' does not work yet, and there may be problems with portability.
author John "Elwin" Edwards
date Sun, 01 Sep 2013 20:50:52 -0700
parents 1e88eb1942a5
children f2951c4e28d9
comparison
equal deleted inserted replaced
100:1e88eb1942a5 101:15f8229f38c1
37 #include <sys/time.h> 37 #include <sys/time.h>
38 #endif 38 #endif
39 39
40 #include "rogue.ext" 40 #include "rogue.ext"
41 41
42 #define SCOREFILE "/var/local/games/roguelike/srogue.scr"
43 #define SAVEDIR "/var/local/games/roguelike/sroguesave/"
44
45 struct termios terminal; 42 struct termios terminal;
46 43
47 main(argc, argv, envp) 44 main(argc, argv, envp)
48 char **argv; 45 char **argv;
49 char **envp; 46 char **envp;