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