Add template for new palette

This commit is contained in:
Gregory John Casamento 2021-04-21 17:31:54 -04:00
parent f7a34388e6
commit ccd06c7e64
5 changed files with 71 additions and 0 deletions

View file

View file

View file

@ -0,0 +1,44 @@
# GNUmakefile
#
# Copyright (C) 1999 Free Software Foundation, Inc.
#
# This file is part of GNUstep.
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
PACKAGE_NAME = gorm
include $(GNUSTEP_MAKEFILES)/common.make
PALETTE_NAME = 5Formatters
5Formatters_PALETTE_ICON = FormatterPalette.tiff
5Formatters_PRINCIPAL_CLASS = FormatterPalette
5Formatters_OBJC_FILES = \
FormatterPalette.m
5Formatters_RESOURCE_FILES = \
FormatterPalette.tiff
palette.table
5Formatters_STANDARD_INSTALL = no
-include GNUmakefile.preamble
-include GNUmakefile.local
include $(GNUSTEP_MAKEFILES)/palette.make
#-include GNUmakefile.postamble

View file

@ -0,0 +1,21 @@
# Additional include directories the compiler should search
ADDITIONAL_INCLUDE_DIRS += -I../..
ifeq ($(GNUSTEP_TARGET_OS),mingw32)
ADDITIONAL_LIB_DIRS += \
-L../../GormLib/$(GNUSTEP_OBJ_DIR) \
-L../../GormObjCHeaderParser/$(GNUSTEP_OBJ_DIR) \
-L../../GormPrefs/$(GNUSTEP_OBJ_DIR) \
-L../../GormCore/$(GNUSTEP_OBJ_DIR)
ADDITIONAL_GUI_LIBS += -lGorm -lGormCore
endif
ifeq ($(GNUSTEP_TARGET_OS),cygwin)
ADDITIONAL_LIB_DIRS += \
-L../../GormLib/$(GNUSTEP_OBJ_DIR) \
-L../../GormObjCHeaderParser/$(GNUSTEP_OBJ_DIR) \
-L../../GormPrefs/$(GNUSTEP_OBJ_DIR) \
-L../../GormCore/$(GNUSTEP_OBJ_DIR)
5Formatters_LIBRARIES_DEPEND_UPON += -lGorm -lGormCore
endif

View file

@ -0,0 +1,6 @@
{
NOTE = "Automatically generated, do not edit!";
NibFile = "";
Class = "FormatterPalette";
Icon = "FormatterPalette";
}