mirror of
https://github.com/gnustep/apps-gorm.git
synced 2025-02-23 19:51:00 +00:00
27 lines
537 B
Makefile
27 lines
537 B
Makefile
#
|
|
# GNUmakefile -- gormtool
|
|
#
|
|
|
|
include $(GNUSTEP_MAKEFILES)/common.make
|
|
|
|
PACKAGE_NAME = gormtool
|
|
TOOL_NAME = gormtool
|
|
|
|
gormtool_HEADER_FILES =
|
|
gormtool_OBJC_FILES = main.m AppDelegate.m
|
|
|
|
ADDITIONAL_TOOL_LIBS = \
|
|
-lGormCore \
|
|
-IInterfaceBuilder \
|
|
-lgnustep-base \
|
|
-lgnustep-gui
|
|
|
|
ADDITIONAL_LIB_DIRS = -L../../GormCore/obj -L../../InterfaceBuilder/obj
|
|
ADDITIONAL_INCLUDE_DIRS = -I../../
|
|
|
|
-include GNUmakefile.preamble
|
|
|
|
include $(GNUSTEP_MAKEFILES)/aggregate.make
|
|
include $(GNUSTEP_MAKEFILES)/tool.make
|
|
|
|
-include GNUmakefile.postamble
|