mirror of
				https://github.com/postgres/postgres.git
				synced 2025-11-04 00:02:52 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			40 lines
		
	
	
		
			750 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			40 lines
		
	
	
		
			750 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
# $PostgreSQL: pgsql/contrib/cube/Makefile,v 1.11 2003/11/29 19:51:21 pgsql Exp $
 | 
						|
 | 
						|
subdir = contrib/cube
 | 
						|
top_builddir = ../..
 | 
						|
include $(top_builddir)/src/Makefile.global
 | 
						|
 | 
						|
MODULE_big = cube
 | 
						|
OBJS= cube.o cubeparse.o
 | 
						|
 | 
						|
DATA_built = cube.sql
 | 
						|
DOCS = README.cube
 | 
						|
REGRESS = cube
 | 
						|
 | 
						|
 | 
						|
# cubescan is compiled as part of cubeparse
 | 
						|
cubeparse.o: cubescan.c
 | 
						|
 | 
						|
cubeparse.c: cubeparse.h ;
 | 
						|
 | 
						|
cubeparse.h: cubeparse.y
 | 
						|
ifdef YACC
 | 
						|
	$(YACC) -d $(YFLAGS) -p cube_yy $<
 | 
						|
	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
 | 
						|
 | 
						|
EXTRA_CLEAN = cubeparse.c cubeparse.h cubescan.c y.tab.c y.tab.h
 | 
						|
 | 
						|
 | 
						|
include $(top_srcdir)/contrib/contrib-global.mk
 |