Browse Source

Updates for 1.0 release

master
Christophe Massiot 13 years ago
parent
commit
abdf4ed39b
3 changed files with 8 additions and 2 deletions
  1. +2
    -0
      .gitattributes
  2. +5
    -1
      Makefile
  3. +1
    -1
      NEWS

+ 2
- 0
.gitattributes View File

@ -0,0 +1,2 @@
.gitattributes export-ignore
.gitignore export-ignore

+ 5
- 1
Makefile View File

@ -1,5 +1,6 @@
PREFIX ?= /usr/local PREFIX ?= /usr/local
INCLUDE = $(subst //,/,$(DESTDIR)/$(PREFIX)/include/bitstream) INCLUDE = $(subst //,/,$(DESTDIR)/$(PREFIX)/include/bitstream)
VERSION = 1.0
all: all:
@echo "Run \"make install\" to install biTStream into $(INCLUDE)" @echo "Run \"make install\" to install biTStream into $(INCLUDE)"
@ -23,4 +24,7 @@ uninstall:
@echo "REMOVE $(INCLUDE)" @echo "REMOVE $(INCLUDE)"
@rm -rf $(INCLUDE) @rm -rf $(INCLUDE)
.PHONY: install uninstall
distcheck:
git archive --format=tar --prefix=bitstream-$(VERSION)/ master | bzip2 -9 > bitstream-$(VERSION).tar.bz2
.PHONY: install uninstall distcheck

+ 1
- 1
NEWS View File

@ -1,4 +1,4 @@
1.0 (?? Aug 2010)
1.0 (15 Dec 2011)
================= =================
- Initial public release - Initial public release

Loading…
Cancel
Save