blob: b4bcd94d526a4297f6c8aec1a2f2e9b17b016c69 [file] [log] [blame] [raw]
# -----------------------------------------------------------------------------
# "THE BEER-WARE LICENSE" (Revision 42):
# Lukas Niederbremer <webmaster@flippeh.de> and Clark Gaebel <cg.wowus.cg@gmail.com>
# wrote this file. As long as you retain this notice you can do whatever you
# want with this stuff. If we meet some day, and you think this stuff is worth
# it, you can buy us a beer in return.
# -----------------------------------------------------------------------------
CFLAGS=-g -Wall -Wextra -std=c99 -pedantic -Wno-implicit-function-declaration
all: nbtreader check
nbtreader: main.o libnbt.a
$(CC) $(CFLAGS) main.o -L. -lnbt -lz -o nbtreader
check: check.c libnbt.a
$(CC) $(CFLAGS) check.c -L. -lnbt -lz -o check
main.o: main.c
libnbt.a: nbt_parsing.o nbt_treeops.o nbt_util.o
ar -rcs libnbt.a nbt_parsing.o nbt_treeops.o nbt_util.o
nbt_parsing.o: nbt_parsing.c
nbt_treeops.o: nbt_treeops.c
nbt_util.o: nbt_util.c