Skip to content

Commit

Permalink
fix initial bugs
Browse files Browse the repository at this point in the history
  • Loading branch information
kaigai committed Jan 13, 2025
1 parent 0363118 commit 3738fbe
Show file tree
Hide file tree
Showing 2 changed files with 230 additions and 65 deletions.
7 changes: 5 additions & 2 deletions arrow-tools/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ PCAP2ARROW_OBJS = pcap2arrow.o arrow_nodes.o arrow_write.o
VCF2ARROW_OBJS = vcf2arrow.o arrow_nodes.o arrow_write.o
ARROW2CSV_OBJS = arrow2csv.o arrow_nodes.o
CLEAN_OBJS = $(PG2ARROW_OBJS) $(MYSQL2ARROW_OBJS) \
$(PCAP2ARROW_OBJS) $(ARROW2CSV_OBJS) \
pcap2arrow arrow2csv pg2arrow mysql2arrow
$(PCAP2ARROW_OBJS) $(VCF2ARROW_OBJS) $(ARROW2CSV_OBJS) \
pcap2arrow arrow2csv pg2arrow mysql2arrow vcf2arrow

CFLAGS = -O2 -fPIC -g -Wall -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64
ifeq ($(HAS_PG_CONFIG),yes)
Expand All @@ -38,6 +38,9 @@ endif
ifeq ($(HAS_MYSQL_CONFIG),yes)
CFLAGS += $(shell $(MYSQL_CONFIG) --include)
endif
ifeq ($(DEBUG),1)
CFLAGS += -g -O0
endif

PREFIX ?= /usr/local
BINDIR ?= $(PREFIX)/bin
Expand Down
Loading

0 comments on commit 3738fbe

Please sign in to comment.