diff options
author | Paul Smith <psmith@gnu.org> | 2004-03-22 15:11:48 +0000 |
---|---|---|
committer | Paul Smith <psmith@gnu.org> | 2004-03-22 15:11:48 +0000 |
commit | e334942e573ea8a4416eca0afafcaf45c3bba06f (patch) | |
tree | 856acdfc21f2aa5cbfca7dff414b193496f0d2c1 /maintMakefile | |
parent | f305a52c02cd17188bb6cc429d56c5912c976229 (diff) | |
download | gunmake-e334942e573ea8a4416eca0afafcaf45c3bba06f.tar.gz |
Numerous updates and bug fixes.
A number of W32 cleanups from J.Grant.
A number of OS/2 cleanups from Andreas Buening.
Various random bug fixes.
Diffstat (limited to 'maintMakefile')
-rw-r--r-- | maintMakefile | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/maintMakefile b/maintMakefile index 49b3a96..c3208fe 100644 --- a/maintMakefile +++ b/maintMakefile @@ -56,7 +56,7 @@ NMakefile: NMakefile.template .dep_segment Makefile build.sh.in: build.template Makefile rm -f $@ sed -e 's@%objs%@$(patsubst %.o,%.$${OBJEXT},$(filter-out remote-%,$(make_OBJECTS)))@g' \ - -e 's@%globobjs%@$(patsubst %.c,%.$${OBJEXT},$(globsrc)))@g' \ + -e 's@%globobjs%@$(patsubst %.c,%.$${OBJEXT},$(globsrc))@g' \ $< > $@ chmod a-w+x $@ @@ -246,8 +246,10 @@ po-check: ## ------------------------- ## # This target creates the upload artifacts. +# Sign it with my key. GPG = gpg +GPGFLAGS = -u 6338B6D4 DIST_ARCHIVES_SIG = $(addsuffix .sig,$(DIST_ARCHIVES)) DIST_ARCHIVES_DIRECTIVE = $(addsuffix .directive.asc,$(DIST_ARCHIVES)) @@ -260,12 +262,12 @@ $(DIST_ARCHIVES_DIRECTIVE): .directive.asc %.sig : % @echo "Signing file '$<':" - $(GPG) -o $@ -b $< + $(GPG) $(GPGFLAGS) -o $@ -b $< .directive.asc: @echo "Creating directive file '$@':" @echo 'directory: make' > .directive - $(GPG) -o $@ --clearsign .directive + $(GPG) $(GPGFLAGS) -o $@ --clearsign .directive @rm -f .directive # Upload the artifacts |