hgcompile -> gitcompile changes (include README files)

This commit is contained in:
Jaroslav Kysela 2008-06-03 10:39:28 +02:00
parent c738ef9352
commit c989fddc7e
27 changed files with 10 additions and 11 deletions

1
.gitignore vendored
View file

@ -5,7 +5,6 @@
*.a *.a
*.emu10k1 *.emu10k1
**/Makefile
Makefile.in Makefile.in
install-sh install-sh
missing missing

View file

@ -5,7 +5,7 @@ SUBDIRS = ac3dec as10k1 envy24control hdsploader hdspconf hdspmixer \
usx2yloader vxloader echomixer ld10k1 qlo10k1 usx2yloader vxloader echomixer ld10k1 qlo10k1
all: all:
@for i in $(SUBDIRS); do cd $(TOP)/$$i; ./hgcompile $(GITCOMPILE_ARGS); cd ..; make -C $$i; done @for i in $(SUBDIRS); do cd $(TOP)/$$i; ./gitcompile $(GITCOMPILE_ARGS); cd ..; make -C $$i; done
install: install:
@for i in $(SUBDIRS); do make -C $$i DESTDIR=$(DESTDIR) install; done @for i in $(SUBDIRS); do make -C $$i DESTDIR=$(DESTDIR) install; done
@ -13,7 +13,7 @@ install:
alsa-dist: alsa-dist:
@echo $(VERSION) >> $(TOP)/version @echo $(VERSION) >> $(TOP)/version
@mkdir -p $(TOP)/distdir @mkdir -p $(TOP)/distdir
@for i in $(SUBDIRS); do cd $(TOP)/$$i; ./hgcompile $(GITCOMPILE_ARGS); cd ..; make -C $$i alsa-dist; done @for i in $(SUBDIRS); do cd $(TOP)/$$i; ./gitcompile $(GITCOMPILE_ARGS); cd ..; make -C $$i alsa-dist; done
@mv distdir alsa-tools-$(VERSION) @mv distdir alsa-tools-$(VERSION)
@tar --create --verbose --file=- alsa-tools-$(VERSION) | bzip2 -c -9 > alsa-tools-$(VERSION).tar.bz2 @tar --create --verbose --file=- alsa-tools-$(VERSION) | bzip2 -c -9 > alsa-tools-$(VERSION).tar.bz2
@mv alsa-tools-$(VERSION) distdir @mv alsa-tools-$(VERSION) distdir

View file

@ -3,7 +3,7 @@ SUBDIRS = examples
bin_PROGRAMS = as10k1 bin_PROGRAMS = as10k1
as10k1_SOURCES = as10k1.c parse.c assemble.c macro.c as10k1_SOURCES = as10k1.c parse.c assemble.c macro.c
noinst_HEADERS = as10k1.h list.h parse.h proto.h types.h noinst_HEADERS = as10k1.h list.h parse.h proto.h types.h
EXTRA_DIST = hgcompile output.doc examples/Makefile examples/*.asm depcomp EXTRA_DIST = gitcompile output.doc examples/Makefile examples/*.asm depcomp
AM_CFLAGS = -fno-strict-aliasing AM_CFLAGS = -fno-strict-aliasing
AUTOMAKE_OPTIONS = foreign AUTOMAKE_OPTIONS = foreign

View file

@ -10,7 +10,7 @@ If you use GTK+-1.2, pass --with-gtk2=no
make make
su -c 'make install' su -c 'make install'
To build (from HG): To build (from GIT):
./hgcompile ./gitcompile
su -c 'make install' su -c 'make install'

View file

@ -38,7 +38,7 @@ REQUIRED:
INSTALL: INSTALL:
-------- --------
./hgcompile ./gitcompile
or or
./configure ./configure

View file

@ -4,7 +4,7 @@ TO COMPILE:
2. compile with: 2. compile with:
'./configure; make' './configure; make'
or or
'./hgcompile' './gitcompile'
3. install with: 3. install with:
'make install' 'make install'
4. read cspctl.1 manpage: 4. read cspctl.1 manpage:

View file

@ -1,7 +1,7 @@
SUBDIRS = sbiload SUBDIRS = sbiload
all: all:
@for i in $(SUBDIRS); do cd $$i; ./hgcompile $(HGCOMPILE_ARGS); cd ..; $(MAKE) -C $$i; done @for i in $(SUBDIRS); do cd $$i; ./gitcompile $(GITCOMPILE_ARGS); cd ..; $(MAKE) -C $$i; done
install: install:
@for i in $(SUBDIRS); do $(MAKE) -C $$i DESTDIR=$(DESTDIR) install; done @for i in $(SUBDIRS); do $(MAKE) -C $$i DESTDIR=$(DESTDIR) install; done

View file

@ -13,7 +13,7 @@ Prerequisites
Installing Installing
---------- ----------
For Installing from HG do: For Installing from GIT do:
./hgcompile ./gitcompile
make install make install