mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-11 15:51:36 +00:00
9585b6af92
own prefs anyway. The "sample" bundle MainPrefs is more complete, and is now loading its interface from a .gorm file -- this would be a .nib on NeXTstep or Mac OS X, and it should be ready to run on those OSes already -- since it doesn't do much. :)
29 lines
535 B
Makefile
29 lines
535 B
Makefile
include $(GNUSTEP_MAKEFILES)/common.make
|
|
|
|
BUNDLE_NAME= MainPrefs
|
|
BUNDLE_EXTENSION= .forgeb
|
|
BUNDLE_INSTALL_DIR= $(GNUSTEP_LOCAL_ROOT)/Library/Forge
|
|
|
|
MainPrefs_MAIN_MODEL_FILE= MainPrefs.gorm
|
|
MainPrefs_RESOURCE_FILES= \
|
|
MainPrefs.gorm
|
|
|
|
MainPrefs_OBJC_FILES= \
|
|
MainPrefsView.m \
|
|
MainPrefs.m
|
|
|
|
MainPrefs_HEADERS= \
|
|
MainPrefsView.h \
|
|
MainPrefs.h
|
|
|
|
MainPrefs_PRINCIPAL_CLASS= \
|
|
MainPrefs
|
|
|
|
#MainPrefs_RESOURCE_FILES= \
|
|
# Forge.tiff
|
|
|
|
-include GNUmakefile.preamble
|
|
|
|
include $(GNUSTEP_MAKEFILES)/bundle.make
|
|
|
|
-include GNUmakefile.postamble
|