mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-06 13:11:20 +00:00
3edc57ef93
release (but should). The interface is no longer defined in code -- it loads it from a .gorm file. The code is a lot cleaner, and I'm working on project management again. Generally, I'm having a lot of fun. :)
27 lines
472 B
Makefile
27 lines
472 B
Makefile
include $(GNUSTEP_MAKEFILES)/common.make
|
|
|
|
BUNDLE_NAME= MainPrefs
|
|
BUNDLE_EXTENSION= .forgeb
|
|
#
|
|
# We don't install this bundle, it goes inside the app.
|
|
#
|
|
BUNDLE_INSTALL_DIR= none
|
|
MainPrefs_STANDARD_INSTALL= no
|
|
|
|
MainPrefs_RESOURCE_FILES= \
|
|
MainPrefs.gorm
|
|
|
|
MainPrefs_OBJC_FILES= \
|
|
MainPrefs.m
|
|
|
|
MainPrefs_HEADERS= \
|
|
MainPrefs.h
|
|
|
|
MainPrefs_PRINCIPAL_CLASS= \
|
|
MainPrefs
|
|
|
|
-include GNUmakefile.preamble
|
|
|
|
include $(GNUSTEP_MAKEFILES)/bundle.make
|
|
|
|
-include GNUmakefile.postamble
|