1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77
|
include $(GNUSTEP_MAKEFILES)/common.make
APP_NAME = Zipper
PACKAGE_NAME = Zipper
VERSION = 1.5
Zipper_APPLICATION_ICON = zipper.tiff
ADDITIONAL_GUI_LIBS +=
Zipper_RESOURCE_FILES = \
Resources/MainMenu.gorm \
Resources/Preferences.gorm \
Resources/ZipperDocument.gorm \
Resources/FileIcon.tiff \
Resources/no_order.tiff \
Resources/sort_ascending.tiff \
Resources/sort_descending.tiff \
Resources/zipper.tiff
Zipper_OBJC_FILES = \
AppDelegate.m \
Archive.m \
ArchiveService.m\
FileInfo.m \
GzipArchive.m\
LhaArchive.m\
LzxArchive.m\
main.m \
NSArray+Custom.m\
NSFileManager+Custom.m\
NSObject+Custom.m \
NSString+Custom.m \
Preferences.m\
PreferencesController.m\
RarArchive.m\
SevenZipArchive.m\
ZooArchive.m\
ArjArchive.m\
AceArchive.m\
TableViewDataSource.m\
TarArchive.m\
ZipArchive.m\
ZipperCell.m\
ZipperDocument.m
Zipper_HEADER_FILES = \
AppDelegate.h \
Archive.h \
ArchiveService.h\
config.h \
FileInfo.h \
GzipArchive.h\
LhaArchive.h\
LzxArchive.h\
NSArray+Custom.h\
NSFileManager+Custom.h\
NSObject+Custom.h \
NSString+Custom.h \
Preferences.h\
PreferencesController.h\
RarArchive.h\
SevenZipArchive.h\
ZooArchive.h\
ArjArchive.h\
AceArchive.h\
TableViewDataSource.h\
TarArchive.h\
ZipArchive.h\
ZipperCell.h\
ZipperDocument.h\
common.h
ADDITIONAL_OBJCFLAGS = -Wall -Wno-import
include $(GNUSTEP_MAKEFILES)/aggregate.make
include $(GNUSTEP_MAKEFILES)/application.make
-include GNUmakefile.postamble
|