diff options
author | Eric Andersen <andersen@codepoet.org> | 2004-10-09 01:24:28 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2004-10-09 01:24:28 +0000 |
commit | 73f7be82904f487d167493e76b415fbe5b5f8c5a (patch) | |
tree | 8d9acaf4414892fad533fd92ebfc7e65a2ad2785 /make/bison.mk | |
parent | 0b5ad783691ef6fa1285c8d7858a51c425a8b38d (diff) | |
download | buildroot-novena-73f7be82904f487d167493e76b415fbe5b5f8c5a.tar.gz buildroot-novena-73f7be82904f487d167493e76b415fbe5b5f8c5a.zip |
Remove the old 'make' directory, and populate the new 'package'
directory.
Diffstat (limited to 'make/bison.mk')
-rw-r--r-- | make/bison.mk | 62 |
1 files changed, 0 insertions, 62 deletions
diff --git a/make/bison.mk b/make/bison.mk deleted file mode 100644 index 89c9b916c..000000000 --- a/make/bison.mk +++ /dev/null @@ -1,62 +0,0 @@ -############################################################# -# -# bison -# -############################################################# -BISON_SOURCE:=bison-1.35.tar.bz2 -BISON_SITE:=ftp://ftp.gnu.org/gnu/bison -BISON_DIR:=$(BUILD_DIR)/bison-1.35 -BISON_CAT:=bzcat -BISON_BINARY:=src/bison -BISON_TARGET_BINARY:=usr/bin/bison - -$(DL_DIR)/$(BISON_SOURCE): - $(WGET) -P $(DL_DIR) $(BISON_SITE)/$(BISON_SOURCE) - -bison-source: $(DL_DIR)/$(BISON_SOURCE) - -$(BISON_DIR)/.unpacked: $(DL_DIR)/$(BISON_SOURCE) - $(BISON_CAT) $(DL_DIR)/$(BISON_SOURCE) | tar -C $(BUILD_DIR) -xvf - - touch $(BISON_DIR)/.unpacked - -$(BISON_DIR)/.configured: $(BISON_DIR)/.unpacked - (cd $(BISON_DIR); rm -rf config.cache; \ - $(TARGET_CONFIGURE_OPTS) \ - CFLAGS="$(TARGET_CFLAGS)" \ - gt_cv_func_gnugettext2_libintl=yes \ - ./configure \ - --target=$(GNU_TARGET_NAME) \ - --host=$(GNU_TARGET_NAME) \ - --build=$(GNU_HOST_NAME) \ - --prefix=/usr \ - --exec-prefix=/usr \ - --bindir=/usr/bin \ - --sbindir=/usr/sbin \ - --libexecdir=/usr/lib \ - --sysconfdir=/etc \ - --datadir=/usr/share \ - --localstatedir=/var \ - --mandir=/usr/man \ - --infodir=/usr/info \ - $(DISABLE_NLS) \ - ); - touch $(BISON_DIR)/.configured - -$(BISON_DIR)/$(BISON_BINARY): $(BISON_DIR)/.configured - $(MAKE) CC=$(TARGET_CC) -C $(BISON_DIR) - -$(TARGET_DIR)/$(BISON_TARGET_BINARY): $(BISON_DIR)/$(BISON_BINARY) - $(MAKE) DESTDIR=$(TARGET_DIR) CC=$(TARGET_CC) -C $(BISON_DIR) install - rm -rf $(TARGET_DIR)/share/locale $(TARGET_DIR)/usr/info \ - $(TARGET_DIR)/usr/man $(TARGET_DIR)/usr/share/doc - cp -a $(SOURCE_DIR)/yacc $(TARGET_DIR)/usr/bin/yacc - -bison: uclibc $(TARGET_DIR)/$(BISON_TARGET_BINARY) - -bison-clean: - $(MAKE) DESTDIR=$(TARGET_DIR) CC=$(TARGET_CC) -C $(BISON_DIR) uninstall - -$(MAKE) -C $(BISON_DIR) clean - -bison-dirclean: - rm -rf $(BISON_DIR) - |