File: Makefile

package info (click to toggle)
pg-roaringbitmap 0.5.4-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, trixie
  • size: 1,260 kB
  • sloc: ansic: 16,596; sql: 1,572; sh: 21; makefile: 14
file content (14 lines) | stat: -rw-r--r-- 377 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
EXTENSION = roaringbitmap
TESTS        = $(wildcard sql/*.sql)
REGRESS      = $(patsubst sql/%.sql,%,$(TESTS))

MODULE_big = roaringbitmap
OBJS = roaringbitmap.o

roaringbitmap.o: override CFLAGS += -std=c99 -Wno-error=maybe-uninitialized -Wno-declaration-after-statement

PG_CONFIG = pg_config

DATA = $(wildcard *--*.sql)
PGXS := $(shell $(PG_CONFIG) --pgxs)
include $(PGXS)