summaryrefslogtreecommitdiff
path: root/Makefile
blob: c62ddb94151deb4b900f0a257dacf1f2ed27c46c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19

.PHONY: all clean
CC=gcc
CXX=g++
CFLAGS=-std=c99
CPPFLAGS=-O3 -Wall -Wextra -pedantic -g
OBJ=upb_parse.o upb_table.o upb_struct.o descriptor.o
all: $(OBJ) test_table tests
clean:
	rm -f $(OBJ) tests

upb_parse.o: upb_parse.c upb_parse.h
upb_table.o: upb_table.c upb_table.h
upb_struct.o: upb_struct.c upb_struct.h
descriptor.o: descriptor.c descriptor.h
test_table: test_table.cc upb_table.o

tests: tests.c upb_parse.c upb_parse.h
	$(CC) $(CFLAGS) -o tests tests.c
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback