8000 Fix Makefiles after removing postgres specific code · postgrespro/libblobstamper@f3ddda1 · GitHub
[go: up one dir, main page]

Skip to content

Commit f3ddda1

Browse files
Fix Makefiles after removing postgres specific code
1 parent c1d2301 commit f3ddda1

File tree

4 files changed

+1
-15
lines changed

4 files changed

+1
-15
lines changed

Makefile

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,16 +13,11 @@ blobstamper/stamp_arithm.o \
1313
blobstamper/stamp_dict.o \
1414
blobstamper/galley.o \
1515
blobstamper/dict.o \
16-
blobstamper/stamp_pg_type_geo.o \
17-
blobstamper/stamp_pg_type_ts.o \
18-
19-
WRAPPERS_OBJ = pg_op_wrappers.o
20-
2116

2217
.PHONY: all blob-stamper-all blob-stamper-clean clean test
2318

2419
#all: blob-stamper-all test_dict $(WRAPPERS_OBJ)
25-
all: blob-stamper-all $(WRAPPERS_OBJ)
20+
all: blob-stamper-all
2621
@echo All done!
2722

2823
blob-stamper-all:

blobstamper/Makefile

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,6 @@ stamp_arithm.o \
66
stamp_dict.o \
77
galley.o \
88
dict.o \
9-
stamp_pg_type_geo.o \
10-
stamp_pg_type_ts.o \
119

1210

1311
%.o: %.cpp $(DEPS)

blobstamper/blobstamper.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,5 @@
55
#include "stamp_dict.h"
66
#include "dict.h"
77
#include "galley.h"
8-
#include "stamp_pg_type_geo.h"
98

109

t/Makefile

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,6 @@ TEST_GOALS := ./00-sanity.t \
1414
./120-stamp_dict.t \
1515
./200-dict.t \
1616
./300-galley.t \
17-
./500-stamp-pg-type-geo.t \
18-
./501-stamp-pg-type-ts.t \
19-
./700-pg-type-wrapper.t\
2017

2118
all: build-libtappp $(TEST_GOALS)
2219

@@ -30,9 +27,6 @@ BLOB_STAMPER_OBJ = ../blobstamper/blob.o \
3027
../blobstamper/stamp_arithm.o \
3128
../blobstamper/stamp_dict.o \
3229
../blobstamper/galley.o \
33-
../blobstamper/stamp_pg_type_geo.o \
34-
../blobstamper/stamp_pg_type_ts.o \
35-
../pg_op_wrappers.o \
3630

3731

3832
build-libtappp:

0 commit comments

Comments
 (0)
0