2023-06-03 23:34:09 +00:00
|
|
|
#
|
|
|
|
# GNUmakefile -- gormtool
|
|
|
|
#
|
|
|
|
|
|
|
|
include $(GNUSTEP_MAKEFILES)/common.make
|
|
|
|
|
|
|
|
PACKAGE_NAME = gormtool
|
|
|
|
TOOL_NAME = gormtool
|
|
|
|
|
2023-07-03 03:40:59 +00:00
|
|
|
gormtool_HEADER_FILES = AppDelegate.h \
|
2023-07-03 03:00:45 +00:00
|
|
|
GormToolPrivate.h \
|
2023-07-03 16:25:50 +00:00
|
|
|
ArgPair.h
|
2023-07-03 03:00:45 +00:00
|
|
|
|
|
|
|
gormtool_OBJC_FILES = main.m \
|
|
|
|
AppDelegate.m \
|
|
|
|
GormToolPrivate.m \
|
2023-07-03 16:25:50 +00:00
|
|
|
ArgPair.m
|
2023-06-05 01:03:21 +00:00
|
|
|
|
2023-06-03 23:34:09 +00:00
|
|
|
-include GNUmakefile.preamble
|
|
|
|
|
|
|
|
include $(GNUSTEP_MAKEFILES)/aggregate.make
|
|
|
|
include $(GNUSTEP_MAKEFILES)/tool.make
|
|
|
|
|
|
|
|
-include GNUmakefile.postamble
|