/
githubmirror
/
postgres
Обзор
Документация
Войти
/
githubmirror
/
postgres
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/backend/bootstrap/Makefile
34 строки
801 B
Peter Eisentraut
Remove distprep
06 ноя 2023, 17:18
06 ноя 2023, 17:18
721856f
Код
Авторство
О чём код?
#------------------------------------------------------------------------- # # Makefile for the bootstrap module # # src/backend/bootstrap/Makefile # #------------------------------------------------------------------------- subdir = src/backend/bootstrap top_builddir = ../../.. include $(top_builddir)/src/Makefile.global override CPPFLAGS := -I. -I$(srcdir) $(CPPFLAGS) OBJS = \ bootparse.o \ bootscanner.o \ bootstrap.o include $(top_srcdir)/src/backend/common.mk # See notes in src/backend/parser/Makefile about the following two rules bootparse.h: bootparse.c touch $@ bootparse.c: BISONFLAGS += -d # Force these dependencies to be known even without dependency info built: bootparse.o bootscanner.o: bootparse.h clean: rm -f bootparse.c \ bootparse.h \ bootscanner.c