mirror of
https://github.com/gnustep/tools-make.git
synced 2025-04-23 22:33:28 +00:00
Apply straightforward patches from Yavor
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/tools/make/trunk@38019 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
476d870cd4
commit
ee1f54933f
5 changed files with 20 additions and 3 deletions
12
ChangeLog
12
ChangeLog
|
@ -1,3 +1,15 @@
|
|||
2014-06-29 Nicolas Boulenguez <nicolas@debian.org> (tiny change)
|
||||
|
||||
* common.make (INTERNAL_CFLAGS): Do not ignore user-specified
|
||||
CFLAGS.
|
||||
|
||||
2014-06-29 Yavor Doganov <yavor@gnu.org>
|
||||
|
||||
* Documentation/GNUstep.7:
|
||||
* Documentation/debugapp.1: Typo fix.
|
||||
* Documentation/gnustep-tests.1: New.
|
||||
* GNUmakefile.in (install, uninstall): Handle gnustep-tests.1.
|
||||
|
||||
2014-06-07 Ivan Vucica <ivan@vucica.net>
|
||||
|
||||
* Master/deb.make: Now adding gnustep-make dependency to the
|
||||
|
|
|
@ -123,7 +123,9 @@ in GNUstep. See the GWorkspace website for more details.
|
|||
|
||||
.SS DEVELOPER APPLICATIONS
|
||||
.P
|
||||
What would a development environment be without the applications to create applications? The applications provided by GNUstep for Rapid Application Developement are:
|
||||
What would a development environment be without the applications to
|
||||
create applications? The applications provided by GNUstep for Rapid
|
||||
Application Development are:
|
||||
.TP
|
||||
GORM
|
||||
.B GORM
|
||||
|
|
|
@ -21,7 +21,7 @@ By default gdb is used as the debugger, but this can be changed with the
|
|||
.B \-\-gdb=
|
||||
option or through the
|
||||
.B GDB
|
||||
enviroment variable.
|
||||
environment variable.
|
||||
.P
|
||||
The
|
||||
.I arguments
|
||||
|
|
|
@ -261,6 +261,8 @@ install: generated-files
|
|||
which gzip > /dev/null 2>&1 && rm -f "$(mandir)/man1/debugapp.1.gz" && gzip -9 "$(mandir)/man1/debugapp.1"; \
|
||||
$(INSTALL_DATA) "$(srcdir)/Documentation/gnustep-config.1" "$(mandir)/man1"; \
|
||||
which gzip > /dev/null 2>&1 && rm -f "$(mandir)/man1/gnustep-config.1.gz" && gzip -9 "$(mandir)/man1/gnustep-config.1"; \
|
||||
$(INSTALL_DATA) "$(srcdir)/Documentation/gnustep-tests.1" "$(mandir)/man1"; \
|
||||
which gzip > /dev/null 2>&1 && rm -f "$(mandir)/man1/gnustep-tests.1.gz" && gzip -9 "$(mandir)/man1/gnustep-tests.1"; \
|
||||
$(INSTALL_DATA) "$(srcdir)/Documentation/openapp.1" "$(mandir)/man1"; \
|
||||
which gzip > /dev/null 2>&1 && rm -f "$(mandir)/man1/openapp.1.gz" && gzip -9 "$(mandir)/man1/openapp.1"; \
|
||||
$(INSTALL_DATA) "$(srcdir)/Documentation/opentool.1" "$(mandir)/man1"; \
|
||||
|
@ -283,6 +285,7 @@ install: generated-files
|
|||
uninstall:
|
||||
rm -f "$(mandir)/man1/debugapp.1" "$(mandir)/man1/debugapp.1.gz"; \
|
||||
rm -f "$(mandir)/man1/gnustep-config.1" "$(mandir)/man1/gnustep-config.1.gz"; \
|
||||
rm -f "$(mandir)/man1/gnustep-tests.1" "$(mandir)/man1/gnustep-tests.1.gz"; \
|
||||
rm -f "$(mandir)/man1/openapp.1" "$(mandir)/man1/openapp.1.gz"; \
|
||||
rm -f "$(mandir)/man1/opentool.1" "$(mandir)/man1/opentool.1.gz"; \
|
||||
rm -f "$(mandir)/man7/GNUstep.7" "$(mandir)/man7/GNUstep.7.gz"; \
|
||||
|
|
|
@ -732,7 +732,7 @@ AUXILIARY_CPPFLAGS += $(GNUSTEP_DEFINE) \
|
|||
|
||||
INTERNAL_OBJCFLAGS += $(ADDITIONAL_FLAGS) $(OPTFLAG) $(OBJCFLAGS) \
|
||||
$(RUNTIME_FLAG)
|
||||
INTERNAL_CFLAGS += $(ADDITIONAL_FLAGS) $(OPTFLAG)
|
||||
INTERNAL_CFLAGS += $(ADDITIONAL_FLAGS) $(OPTFLAG) $(CFLAGS)
|
||||
|
||||
#
|
||||
# Support building of Multiple Architecture Binaries (MAB). The object files
|
||||
|
|
Loading…
Reference in a new issue