summaryrefslogtreecommitdiff
path: root/src/backend/bootstrap/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'src/backend/bootstrap/Makefile')
-rw-r--r--src/backend/bootstrap/Makefile16
1 files changed, 0 insertions, 16 deletions
diff --git a/src/backend/bootstrap/Makefile b/src/backend/bootstrap/Makefile
index a77d864800..672bc8b6d7 100644
--- a/src/backend/bootstrap/Makefile
+++ b/src/backend/bootstrap/Makefile
@@ -16,24 +16,8 @@ OBJS= bootparse.o bootstrap.o
include $(top_srcdir)/src/backend/common.mk
-
# bootscanner is compiled as part of bootparse
bootparse.o: bootscanner.c
-bootparse.c: bootparse.y
-ifdef BISON
- $(BISON) $(BISONFLAGS) -o $@ $<
-else
- @$(missing) bison $< $@
-endif
-
-bootscanner.c: bootscanner.l
-ifdef FLEX
- $(FLEX) $(FLEXFLAGS) -o'$@' $<
-else
- @$(missing) flex $< $@
-endif
-
-
# bootparse.c and bootscanner.c are in the distribution tarball, so
# they are not cleaned here.