Build compatibility for linux

This commit is contained in:
Bruce Hill 2019-02-05 00:32:52 +00:00
parent 73197756c8
commit 8f5b827727
3 changed files with 5 additions and 3 deletions

View File

@ -1,7 +1,7 @@
PREFIX=
CC=cc
CFLAGS=-O3
LIBS=-lncurses
CFLAGS=-O3 -std=gnu99
LIBS=-lncurses -lm
all: nuke

View File

@ -13,7 +13,8 @@
static const double GOLDEN_RATIO = 1.6180339887498948482045868343656381;
static const int NUM_WAVES = 7;
#define NUM_WAVES 7
// Randomly generated x/y offsets:
static const double OFFSETS[2*NUM_WAVES] = {
0.5459919526, 0.6072439135, 0.6217563193, 0.5444045324, 0.8923452588,

1
nuke.c
View File

@ -7,6 +7,7 @@
#include "list.h"
#include <curses.h>
#include <errno.h>
#define __USE_XOPEN_EXTENDED
#include <ftw.h>
#include <math.h>
#include <poll.h>