mirror of https://github.com/pret/pokecrystal.git
Fix tools/gfx
This commit is contained in:
parent
9b1550c5e0
commit
80f7477c33
|
@ -1,5 +1,7 @@
|
|||
.PHONY: all
|
||||
|
||||
CFLAGS := -std=c99
|
||||
|
||||
all: \
|
||||
lzcomp \
|
||||
png_dimensions \
|
||||
|
@ -11,4 +13,4 @@ all: \
|
|||
@:
|
||||
|
||||
%: %.c
|
||||
$(CC) -o $@ $<
|
||||
$(CC) $(CFLAGS) -o $@ $<
|
||||
|
|
|
@ -3,6 +3,7 @@
|
|||
#include <stdbool.h>
|
||||
#include <getopt.h>
|
||||
#include <string.h>
|
||||
#include <stdint.h>
|
||||
|
||||
#include "common.h"
|
||||
|
||||
|
|
Loading…
Reference in New Issue