mirror of
				https://github.com/postgres/postgres.git
				synced 2025-11-04 00:02:52 -05:00 
			
		
		
		
	(respectively) to rename yylex and related symbols. Some were doing it this way already, while others used not-too-reliable sed hacks in the Makefiles. It's all nice and consistent now.
		
			
				
	
	
		
			50 lines
		
	
	
		
			968 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			50 lines
		
	
	
		
			968 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
# $PostgreSQL: pgsql/contrib/cube/Makefile,v 1.17 2006/03/07 01:03:12 tgl Exp $
 | 
						|
 | 
						|
MODULE_big = cube
 | 
						|
OBJS= cube.o cubeparse.o
 | 
						|
 | 
						|
DATA_built = cube.sql
 | 
						|
DATA = uninstall_cube.sql
 | 
						|
DOCS = README.cube
 | 
						|
REGRESS = cube
 | 
						|
 | 
						|
EXTRA_CLEAN = cubeparse.c cubeparse.h cubescan.c y.tab.c y.tab.h
 | 
						|
 | 
						|
PG_CPPFLAGS = -I.
 | 
						|
 | 
						|
SHLIB_LINK += $(filter -lm, $(LIBS))
 | 
						|
 | 
						|
ifdef USE_PGXS
 | 
						|
PGXS := $(shell pg_config --pgxs)
 | 
						|
include $(PGXS)
 | 
						|
else
 | 
						|
subdir = contrib/cube
 | 
						|
top_builddir = ../..
 | 
						|
include $(top_builddir)/src/Makefile.global
 | 
						|
include $(top_srcdir)/contrib/contrib-global.mk
 | 
						|
endif
 | 
						|
 | 
						|
 | 
						|
# cubescan is compiled as part of cubeparse
 | 
						|
cubeparse.o: cubescan.c
 | 
						|
 | 
						|
# See notes in src/backend/parser/Makefile about the following two rules
 | 
						|
 | 
						|
cubeparse.c: cubeparse.h ;
 | 
						|
 | 
						|
cubeparse.h: cubeparse.y
 | 
						|
ifdef YACC
 | 
						|
	$(YACC) -d $(YFLAGS) $<
 | 
						|
	mv -f y.tab.c cubeparse.c
 | 
						|
	mv -f y.tab.h cubeparse.h
 | 
						|
else
 | 
						|
	@$(missing) bison $< $@
 | 
						|
endif
 | 
						|
 | 
						|
cubescan.c: cubescan.l
 | 
						|
ifdef FLEX
 | 
						|
	$(FLEX) $(FLEXFLAGS) -o'$@' $<
 | 
						|
else
 | 
						|
	@$(missing) flex $< $@
 | 
						|
endif
 |