mirror of
https://git.postgresql.org/git/postgresql.git
synced 2026-02-12 01:18:35 +08:00
Add Windows file version information to test_json_parser programs.
This commit is contained in:
@ -4,7 +4,7 @@ PGAPPICON = win32
|
||||
|
||||
TAP_TESTS = 1
|
||||
|
||||
OBJS = test_json_parser_incremental.o test_json_parser_perf.o
|
||||
OBJS = test_json_parser_incremental.o test_json_parser_perf.o $(WIN32RES)
|
||||
|
||||
EXTRA_CLEAN = test_json_parser_incremental$(X) test_json_parser_perf$(X)
|
||||
|
||||
@ -23,10 +23,10 @@ all: test_json_parser_incremental$(X) test_json_parser_perf$(X)
|
||||
|
||||
%.o: $(top_srcdir)/$(subdir)/%.c
|
||||
|
||||
test_json_parser_incremental$(X): test_json_parser_incremental.o
|
||||
test_json_parser_incremental$(X): test_json_parser_incremental.o $(WIN32RES)
|
||||
$(CC) $(CFLAGS) $^ $(PG_LIBS_INTERNAL) $(LDFLAGS) $(LDFLAGS_EX) $(PG_LIBS) $(LIBS) -o $@
|
||||
|
||||
test_json_parser_perf$(X): test_json_parser_perf.o
|
||||
test_json_parser_perf$(X): test_json_parser_perf.o $(WIN32RES)
|
||||
$(CC) $(CFLAGS) $^ $(PG_LIBS_INTERNAL) $(LDFLAGS) $(LDFLAGS_EX) $(PG_LIBS) $(LIBS) -o $@
|
||||
|
||||
speed-check: test_json_parser_perf$(X)
|
||||
|
||||
Reference in New Issue
Block a user