mirror of
https://github.com/gnustep/libs-gdl2.git
synced 2025-04-22 12:55:44 +00:00
* EOAdaptors/Postgres95/LoginPanel/GNUmakefile
* EOAdaptors/Postgres95/LoginPanel/Makefile.postamble: Allow clean and distclean targets when -gui is not available. git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gdl2/trunk@19158 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
dfa4b51e74
commit
47403ded66
3 changed files with 19 additions and 11 deletions
|
@ -1,3 +1,9 @@
|
|||
2004-04-20 David Ayers <d.ayers@inode.at>
|
||||
|
||||
* EOAdaptors/Postgres95/LoginPanel/GNUmakefile
|
||||
* EOAdaptors/Postgres95/LoginPanel/Makefile.postamble: Allow clean
|
||||
and distclean targets when -gui is not available.
|
||||
|
||||
2004-04-18 David Ayers <d.ayers@inode.at>
|
||||
|
||||
* EOControl/EOGlobalID.h: Correct size of _bytes.
|
||||
|
@ -16,7 +22,6 @@
|
|||
bytes instead of pointer value.
|
||||
([EOTemporaryGlobalID decodeWithCoder:]): Decode contents of
|
||||
bytes instead of pointer value.
|
||||
|
||||
|
||||
2004-04-17 David Ayers <d.ayers@inode.at>
|
||||
|
||||
|
|
|
@ -26,6 +26,11 @@
|
|||
include $(GNUSTEP_MAKEFILES)/common.make
|
||||
|
||||
BUNDLE_NAME=LoginPanel
|
||||
ifneq ($(GUI_MAKE_LOADED),yes)
|
||||
ifneq ($(GUI_LIB),apple)
|
||||
BUNDLE_NAME=
|
||||
endif
|
||||
endif
|
||||
|
||||
LoginPanel_OBJC_FILES = Postgres95LoginPanel.m
|
||||
LoginPanel_PRINCIPAL_CLASS = Postgres95LoginPanel
|
||||
|
@ -48,15 +53,7 @@ include ../config.mak
|
|||
|
||||
-include GNUmakefile.local
|
||||
|
||||
ifeq ($(GUI_MAKE_LOADED),yes)
|
||||
include $(GNUSTEP_MAKEFILES)/bundle.make
|
||||
else
|
||||
ifeq ($(GUI_LIB),apple)
|
||||
include $(GNUSTEP_MAKEFILES)/bundle.make
|
||||
else
|
||||
guiNotInstalled:
|
||||
@echo Skipping login panel compilation. GNUstep gui not installed.
|
||||
endif
|
||||
endif
|
||||
include $(GNUSTEP_MAKEFILES)/bundle.make
|
||||
|
||||
-include Makefile.postamble
|
||||
|
||||
|
|
|
@ -33,6 +33,12 @@
|
|||
#
|
||||
|
||||
# Things to do before compiling
|
||||
ifneq ($(GUI_MAKE_LOADED),yes)
|
||||
ifneq ($(GUI_LIB),apple)
|
||||
before-all::
|
||||
@echo Skipping login panel compilation. GNUstep gui not installed.
|
||||
endif
|
||||
endif
|
||||
before-all:: Postgres95EOAdaptor
|
||||
|
||||
# Things to do after compiling
|
||||
|
|
Loading…
Reference in a new issue