-
Notifications
You must be signed in to change notification settings - Fork 100
/
Makefile
587 lines (492 loc) · 23.1 KB
/
Makefile
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
#
# Makefile created at Sun Nov 14 22:35:03 2004, by mmake
#
# Programs (with common options):
SHELL = /bin/sh
CP = cp
RM = rm -f
MV = mv -f
SED = sed
ETAGS = etags
XARGS = xargs
CAT = cat
FIND = find
CPP = cpp -C -P
INSTALL = install
INSTALL_PROG = $(INSTALL) -m $(MODE_PROGS)
INSTALL_FILE = $(INSTALL) -m $(MODE_FILES)
INSTALL_DIR = $(INSTALL) -m $(MODE_DIRS) -d
# Install modes
MODE_PROGS = 555
MODE_FILES = 444
MODE_DIRS = 2755
# Build programs
JAVAC = /opt/jdk/bin/javac
JAVADOC = javadoc
JAR = jar
# Build flags
JAVAC_FLAGS = -verbose -classpath ".:./lib/js.jar:./lib/jzlib.jar"
JAVADOC_FLAGS = -d ./docs -J-Xmx128m
JAR_FLAGS = cvf0
JIKES_DEP_FLAG = +M
# ------------------------------------------------------------------- #
# Prefix for every install directory
PREFIX = ./
# Where to start installing the class files. Set this to an empty value
# if you dont want to install classes
CLASS_DIR = $(PREFIX)classes
# The directory to install the jar file in. Set this to an empty value
# if you dont want to install a jar file
JAR_DIR = $(PREFIX)lib
# The directory to install the app bundle in. Set this to an empty value
# if you dont want to install an app bundle
BUNDLE_DIR = $(PREFIX)lib
# The directory to install html files generated by javadoc
DOC_DIR = $(PREFIX)./docs
# The directory to install script files in
SCRIPT_DIR = $(PREFIX)bin
# ------------------------------------------------------------------- #
# The name of the jar file to install
JAR_FILE =
#
# The VERSION variable below should be set to a value
# that will be tested in the .xjava code and Info.plist.
#
VERSION = CHANGE_ME
# ------------------------------------------------------------------- #
# The name of the OS X Application Bundle to install
BUNDLE_FILE =
# Folder containing App Bundle resources (Info.plist, *.icns, etc.)
BUNDLE_RESOURCE_DIR = misc/macosx
# Items to copy to the Resources folder of the bundle
BUNDLE_RESOURCES = $(addsuffix .icns, $(basename $(APP_FILE)) Document)
# Location of JavaApplicatonStub
JAVA_STUB = /System/Library/Frameworks/JavaVM.framework/Resources/MacOS/JavaApplicationStub
# ------------------------------------------------------------------- #
# Resource files:
# Extend the list to install other files of your choice
RESOURCE_SRC := *.properties *.gif *.au
# Objects that should go into the jar file. (find syntax)
JAR_OBJS := \( -name '*.class' -o -name '*.gif' -o -name "*.au" \
-o -name '*.properties' \)
# Include the separate variables file if it exists
MAKEFILE_VARS = makefile.vars
VARS = $(wildcard $(MAKEFILE_VARS))
ifneq ($(VARS),)
include $(MAKEFILE_VARS)
endif
# Packages we should compile
PACKAGES = \
com.planet_ink.fakedb \
com.planet_ink.coffee_mud.Abilities \
com.planet_ink.coffee_mud.application \
com.planet_ink.coffee_mud.Areas \
com.planet_ink.coffee_mud.Behaviors \
com.planet_ink.coffee_mud.CharClasses \
com.planet_ink.coffee_mud.Commands \
com.planet_ink.coffee_mud.Common \
com.planet_ink.coffee_mud.core \
com.planet_ink.coffee_mud.core.collections \
com.planet_ink.coffee_mud.core.database \
com.planet_ink.coffee_mud.core.exceptions \
com.planet_ink.coffee_mud.core.interfaces \
com.planet_ink.coffee_mud.core.intermud \
com.planet_ink.coffee_mud.core.intermud.cm1 \
com.planet_ink.coffee_mud.core.intermud.cm1.commands \
com.planet_ink.coffee_mud.core.intermud.imc2 \
com.planet_ink.coffee_mud.core.intermud.i3 \
com.planet_ink.coffee_mud.core.intermud.i3.entities \
com.planet_ink.coffee_mud.core.intermud.i3.net \
com.planet_ink.coffee_mud.core.intermud.i3.packets \
com.planet_ink.coffee_mud.core.intermud.i3.persist \
com.planet_ink.coffee_mud.core.intermud.i3.router \
com.planet_ink.coffee_mud.core.intermud.i3.server \
com.planet_ink.coffee_mud.core.smtp \
com.planet_ink.coffee_mud.core.threads \
com.planet_ink.coffee_mud.Exits \
com.planet_ink.coffee_mud.Items \
com.planet_ink.coffee_mud.Libraries \
com.planet_ink.coffee_mud.Locales \
com.planet_ink.coffee_mud.MOBS \
com.planet_ink.coffee_mud.Races \
com.planet_ink.coffee_mud.Tests \
com.planet_ink.coffee_mud.WebMacros \
com.planet_ink.coffee_mud.Abilities.Archon \
com.planet_ink.coffee_mud.Abilities.Common \
com.planet_ink.coffee_mud.Abilities.Diseases \
com.planet_ink.coffee_mud.Abilities.Druid \
com.planet_ink.coffee_mud.Abilities.Fighter \
com.planet_ink.coffee_mud.Abilities.interfaces \
com.planet_ink.coffee_mud.Abilities.Languages \
com.planet_ink.coffee_mud.Abilities.Misc \
com.planet_ink.coffee_mud.Abilities.Paladin \
com.planet_ink.coffee_mud.Abilities.Poisons \
com.planet_ink.coffee_mud.Abilities.Prayers \
com.planet_ink.coffee_mud.Abilities.Properties \
com.planet_ink.coffee_mud.Abilities.Ranger \
com.planet_ink.coffee_mud.Abilities.Skills \
com.planet_ink.coffee_mud.Abilities.Songs \
com.planet_ink.coffee_mud.Abilities.Specializations \
com.planet_ink.coffee_mud.Abilities.Spells \
com.planet_ink.coffee_mud.Abilities.SuperPowers \
com.planet_ink.coffee_mud.Abilities.Tech \
com.planet_ink.coffee_mud.Abilities.Thief \
com.planet_ink.coffee_mud.Abilities.Traps \
com.planet_ink.coffee_mud.Areas.interfaces \
com.planet_ink.coffee_mud.Behaviors.interfaces \
com.planet_ink.coffee_mud.CharClasses.interfaces \
com.planet_ink.coffee_mud.Commands.interfaces \
com.planet_ink.coffee_mud.Common.interfaces \
com.planet_ink.coffee_mud.Exits.interfaces \
com.planet_ink.coffee_mud.Items.Armor \
com.planet_ink.coffee_mud.Items.Basic \
com.planet_ink.coffee_mud.Items.BasicTech \
com.planet_ink.coffee_mud.Items.ClanItems \
com.planet_ink.coffee_mud.Items.CompTech \
com.planet_ink.coffee_mud.Items.interfaces \
com.planet_ink.coffee_mud.Items.MiscMagic \
com.planet_ink.coffee_mud.Items.Software \
com.planet_ink.coffee_mud.Items.Weapons \
com.planet_ink.coffee_mud.Libraries.interfaces \
com.planet_ink.coffee_mud.Libraries.layouts \
com.planet_ink.coffee_mud.Libraries.mcppkgs \
com.planet_ink.coffee_mud.Locales.interfaces \
com.planet_ink.coffee_mud.MOBS.interfaces \
com.planet_ink.coffee_mud.Races.interfaces \
com.planet_ink.coffee_mud.Tests \
com.planet_ink.coffee_mud.Tests.interfaces \
com.planet_ink.coffee_mud.WebMacros.grinder \
com.planet_ink.coffee_mud.WebMacros.interfaces \
com.planet_ink.coffee_web.converters \
com.planet_ink.coffee_web.http \
com.planet_ink.coffee_web.interfaces \
com.planet_ink.coffee_web.server \
com.planet_ink.coffee_web.servlets \
com.planet_ink.coffee_web.util \
com.planet_ink.siplet.applet \
com.planet_ink.siplet.support \
# All packages that can be recursively compiled.
ALL_PACKAGES = \
com.planet_ink.coffee_mud \
com.planet_ink \
com.planet_ink.coffee_mud.Items \
com \
$(PACKAGES)
# Packages to generate docs for.
JAVADOC_PACKAGES = $(PACKAGES)
# Resource packages
RESOURCES = \
web.admin.grinder.images \
resources.scripts.EN_TX \
guides.images \
web.admin.images \
web.pub.images \
# Directories with shell scripts
SCRIPTS = \
# ------------------------------------------------------------------- #
# A marker variable for the top level directory
TOPLEVEL := .
# Subdirectories with java files:
JAVA_DIRS := $(subst .,/,$(PACKAGES)) $(TOPLEVEL)
# Subdirectories with only resource files:
RESOURCE_DIRS := $(subst .,/,$(RESOURCES))
# All the .xjava source files:
XJAVA_SRC := $(foreach dir, $(JAVA_DIRS), $(wildcard $(dir)/*.xjava))
# All the xjava files to build
XJAVA_OBJS := $(XJAVA_SRC:.xjava=.java)
# Directory coresponding to a package
PACKAGE_DIR = $(subst .,/,$(1))
# All the (x)java files in a package
PACKAGE_SRC = $(shell $(FIND) $(PACKAGE_DIR) \( -name '*.java' -or -name '*.xjava' \) )
# All the classes to build in a package
PACKAGE_OBJS = $(patsubst %.java,%.class,$(PACKAGE_SRC: %.xjava=%.java))
# All the .java source files:
JAVA_SRC := $(foreach dir, $(JAVA_DIRS), $(wildcard $(dir)/*.java))
JAVA_SRC := $(XJAVA_OBJS) $(JAVA_SRC)
# Dependency files:
DEPEND_OBJS := $(JAVA_SRC:.java=.u)
# The intermediate java files and main classes we should build:
JAVA_OBJS := $(XJAVA_OBJS) $(JAVA_SRC:.java=.class)
# Search for resource files in both JAVA_DIRS and RESOURCE_DIRS
RESOURCE_OBJS := $(foreach dir, $(JAVA_DIRS) $(RESOURCE_DIRS), \
$(wildcard $(foreach file, $(RESOURCE_SRC), \
$(dir)/$(file))))
# All the shell scripts source
SCRIPT_SRCS := $(foreach dir, $(SCRIPTS), $(wildcard $(dir)/*.sh))
# All shell scripts we should install
SCRIPT_OBJS := $(SCRIPT_SRCS:.sh=)
# All the files to install into CLASS_DIR
INSTALL_OBJS := $(foreach dir, $(JAVA_DIRS), $(wildcard $(dir)/*.class))
# Escape inner class delimiter $
INSTALL_OBJS := $(subst $$,\$$,$(INSTALL_OBJS))
# Add the resource files to be installed as well
INSTALL_OBJS := $(INSTALL_OBJS) $(RESOURCE_OBJS)
# ------------------------------------------------------------------- #
define check-exit
|| exit 1
endef
# -----------
# Build Rules
# -----------
%.java: %.xjava
$(CPP) -D$(VERSION) $< $@
%.class: %.java
$(JAVAC) $(JAVAC_FLAGS) $<
%.jar: $(JAVA_OBJS) $(RESOURCE_OBJS)
$(FIND) $(TOPLEVEL) $(JAR_OBJS) -print | $(XARGS) \
$(JAR) $(JAR_FLAGS) $(JAR_FILE)
%.u: %.java
$(JAVAC) $(JIKES_DEP_FLAG) $<
# -------
# Targets
# -------
.PHONY: all jar install uninstall doc clean depend tags bundle \
help $(ALL_PACKAGES)
all:: $(JAVA_OBJS)
help:
@echo "Usage: make {all|jar|srcjar|bundle|install|uninstall|doc|clean|depend|tags|PACKAGE_NAME}"
@echo " all: build all classes"
@echo " jar: build jar file"
@echo " srcjar: build source jar file"
@echo " bundle: build OS X app bundle"
@echo " install: install classes into $(CLASS_DIR)"
@echo " jar into $(JAR_DIR)"
@echo " bundle into $(BUNDLE_DIR)"
@echo " javadocs into $(DOC_DIR)"
@echo " scripts into $(SCRIPT_DIR)"
@echo " uninstall: remove installed files"
@echo " doc: generate api docs from javadoc comments"
@echo " clean: remove classes and temporary files"
@echo " depend: build class dependency info using jikes"
@echo " tags: build emacs tags file"
@echo " PACKAGE_NAME: builds all classes in this package and any subpackages."
# Jar target
ifneq ($(strip $(JAR_FILE)),)
jar: $(JAR_FILE)
ifneq ($(strip $(JAR_DIR)),)
install:: $(JAR_FILE)
@echo "===> [Installing jar file, $(JAR_FILE) in $(JAR_DIR)] "
$(INSTALL_DIR) $(JAR_DIR) $(check-exit)
$(INSTALL_FILE) $(JAR_FILE) $(JAR_DIR) $(check-exit)
uninstall::
@echo "===> [Removing jar file, $(JAR_FILE) from $(JAR_DIR)] "
$(RM) $(JAR_DIR)/$(JAR_FILE) $(check-exit)
else
install::
@echo "No jar install dir defined"
endif
clean::
$(RM) $(JAR_FILE)
else
jar:
@echo "No jar file defined"
endif
SRC_JAR_FILE := $(basename $(JAR_FILE))-src$(suffix $JAR_FILE)
# Source jar target
srcjar : $(SRC_JAR_FILE)
$(SRC_JAR_FILE): $(JAVA_SRC) $(RESOURCE_OBJS)
$(FIND) $(TOPLEVEL) $(JAR_OBJS: .class=.java) -print | $(XARGS) \
$(JAR) $(JAR_FLAGS) $@
# Bundle target
ifneq ($(strip $(BUNDLE_FILE)),)
bundle: $(BUNDLE_FILE)
$(BUNDLE_FILE) : $(JAR_FILE)
$(INSTALL_DIR) $(BUNDLE_FILE)/Contents/Resources/Java $(check-exit)
$(INSTALL_DIR) $(BUNDLE_FILE)/Contents/MacOS $(check-exit)
$(INSTALL_PROG) $(JAVA_STUB) $(BUNDLE_FILE)/Contents/MacOS/ \
$(check-exit)
( $(CAT) $(BUNDLE_RESOURCE_DIR)/Info.plist | $(SED) -e \
s/VERSION/$(VERSION)/ >98762infoplist876 ) $(check-exit)
$(INSTALL_FILE) 98762infoplist876 \
$(BUNDLE_FILE)/Contents/Info.plist $(check-exit)
$(RM) 98762infoplist876 $(check-exit)
$(INSTALL_FILE) $(JAR_FILE) $(BUNDLE_FILE)/Contents/Resources/Java
checkexit="";for f in $(BUNDLE_RESOURCES); do \
$(INSTALL_FILE) $(BUNDLE_RESOURCE_DIR)$$f $(BUNDLE_FILE)/Contents/Resources/ \
|| checkexit=$?; \
done; test -z $$checkexit
ifneq ($(strip $(BUNDLE_DIR)),)
# This is probably bad, but I don't know how else to do it
install:: $(BUNDLE_FILE)
@echo "===> [Installing app bundle, $(BUNDLE_FILE) in $(BUNDLE_DIR)] "
$(INSTALL_DIR) $(BUNDLE_DIR) $(check-exit)
$(CP) -R $(BUNDLE_FILE) $(BUNDLE_DIR) $(check-exit)
$(INSTALL_FILE) $(BUNDLE_FILE) $(BUNDLE_DIR) $(check-exit)
uninstall::
@echo "===> [Removing bundle file, $(BUNDLE_FILE) from $(BUNDLE_DIR)] "
$(RM) -r $(BUNDLE_DIR)/$(BUNDLE_FILE) $(check-exit)
else
install::
@echo "No bundle install dir defined"
endif
clean::
$(RM) -r $(BUNDLE_FILE)
else
bundle:
@echo "No bundle file defined"
endif
# Install target for Classes and Resources
ifneq ($(strip $(CLASS_DIR)),)
install:: $(JAVA_OBJS)
@echo "===> [Installing classes in $(CLASS_DIR)] "
$(INSTALL_DIR) $(CLASS_DIR) $(check-exit)
$(foreach dir, $(JAVA_DIRS) $(RESOURCE_DIRS), \
$(INSTALL_DIR) $(CLASS_DIR)/$(dir) $(check-exit))
$(foreach file, $(INSTALL_OBJS), \
$(INSTALL_FILE) $(file) $(CLASS_DIR)/$(file) \
$(check-exit))
uninstall::
@echo "===> [Removing class-files from $(CLASS_DIR)] "
$(foreach file, $(INSTALL_OBJS), \
$(RM) $(CLASS_DIR)/$(file) \
$(check-exit))
else
# Print a warning here if you like. (No class install dir defined)
endif
# Depend target
ifeq ($(findstring jikes,$(JAVAC)),jikes)
depend: $(XJAVA_OBJS) $(DEPEND_OBJS)
( $(CAT) $(DEPEND_OBJS) | $(SED) -e '/\.class$$/d' \
-e '/.*$$.*/d' > $(MAKEFILE_DEPEND); $(RM) $(DEPEND_OBJS); )
else
depend:
@echo "mmake needs the jikes compiler to build class dependencies"
endif
# Doc target
ifneq ($(strip $(JAVADOC_PACKAGES)),)
doc: $(JAVA_SRC)
@echo "===> [Installing java documentation in $(DOC_DIR)] "
$(INSTALL_DIR) $(DOC_DIR) $(check-exit)
$(JAVADOC) $(JAVADOC_FLAGS) -d $(DOC_DIR) $(JAVADOC_PACKAGES)
else
doc:
@echo "You must put your source files in a package to run make doc"
endif
# Script target
ifneq ($(strip $(SCRIPT_OBJS)),)
all:: $(SCRIPT_OBJS)
ifneq ($(strip $(SCRIPT_DIR)),)
install:: $(SCRIPT_OBJS)
@echo "===> [Installing shell-scripts in $(SCRIPT_DIR)] "
$(INSTALL_DIR) $(SCRIPT_DIR) $(check-exit)
$(foreach file, $(SCRIPT_OBJS), \
$(INSTALL_PROG) $(file) $(SCRIPT_DIR) $(check-exit))
uninstall::
@echo "===> [Removing shell-scripts from $(SCRIPT_DIR)] "
$(foreach file, $(SCRIPT_OBJS), \
$(RM) $(SCRIPT_DIR)/$(file) $(check-exit))
else
# Print a warning here if you like. (No script install dir defined)
endif
clean::
rm -f $(SCRIPT_OBJS)
endif
# Tag target
tags:
@echo "Tagging"
$(ETAGS) $(filter-out $(XJAVA_OBJS), $(JAVA_SRC)) $(XJAVA_SRC)
# Various cleanup routines
clean::
$(FIND) . \( -name '*~' -o -name '*.class' \) -print | \
$(XARGS) $(RM)
$(FIND) . -name '*.u' -print | $(XARGS) $(RM)
ifneq ($(strip $(XJAVA_SRC)),)
clean::
$(RM) $(XJAVA_OBJS)
endif
# ----------------------------------------
# Include the dependency graph if it exist
# ----------------------------------------
MAKEFILE_DEPEND = makefile.dep
DEPEND = $(wildcard $(MAKEFILE_DEPEND))
ifneq ($(DEPEND),)
include $(MAKEFILE_DEPEND)
endif
#package targets
com.planet_ink.coffee_mud : $(call PACKAGE_OBJS,com.planet_ink.coffee_mud)
com.planet_ink : $(call PACKAGE_OBJS,com.planet_ink)
com.planet_ink.coffee_mud.Items : $(call PACKAGE_OBJS,com.planet_ink.coffee_mud.Items)
com : $(call PACKAGE_OBJS,com)
com.planet_ink.fakedb : $(call PACKAGE_OBJS,com.planet_ink.fakedb)
com.planet_ink.coffee_mud.Abilities : $(call PACKAGE_OBJS,com.planet_ink.coffee_mud.Abilities)
com.planet_ink.coffee_mud.application : $(call PACKAGE_OBJS,com.planet_ink.coffee_mud.application)
com.planet_ink.coffee_mud.Areas : $(call PACKAGE_OBJS,com.planet_ink.coffee_mud.Areas)
com.planet_ink.coffee_mud.Behaviors : $(call PACKAGE_OBJS,com.planet_ink.coffee_mud.Behaviors)
com.planet_ink.coffee_mud.CharClasses : $(call PACKAGE_OBJS,com.planet_ink.coffee_mud.CharClasses)
com.planet_ink.coffee_mud.Commands : $(call PACKAGE_OBJS,com.planet_ink.coffee_mud.Commands)
com.planet_ink.coffee_mud.Common : $(call PACKAGE_OBJS,com.planet_ink.coffee_mud.Common)
com.planet_ink.coffee_mud.core : $(call PACKAGE_OBJS,com.planet_ink.coffee_mud.core)
com.planet_ink.coffee_mud.Exits : $(call PACKAGE_OBJS,com.planet_ink.coffee_mud.Exits)
com.planet_ink.coffee_mud.Libraries : $(call PACKAGE_OBJS,com.planet_ink.coffee_mud.Libraries)
com.planet_ink.coffee_mud.Locales : $(call PACKAGE_OBJS,com.planet_ink.coffee_mud.Locales)
com.planet_ink.coffee_mud.MOBS : $(call PACKAGE_OBJS,com.planet_ink.coffee_mud.MOBS)
com.planet_ink.coffee_mud.Races : $(call PACKAGE_OBJS,com.planet_ink.coffee_mud.Races)
com.planet_ink.coffee_mud.WebMacros : $(call PACKAGE_OBJS,com.planet_ink.coffee_mud.WebMacros)
com.planet_ink.coffee_mud.Abilities.Archon : $(call PACKAGE_OBJS,com.planet_ink.coffee_mud.Abilities.Archon)
com.planet_ink.coffee_mud.Abilities.Common : $(call PACKAGE_OBJS,com.planet_ink.coffee_mud.Abilities.Common)
com.planet_ink.coffee_mud.Abilities.Diseases : $(call PACKAGE_OBJS,com.planet_ink.coffee_mud.Abilities.Diseases)
com.planet_ink.coffee_mud.Abilities.Druid : $(call PACKAGE_OBJS,com.planet_ink.coffee_mud.Abilities.Druid)
com.planet_ink.coffee_mud.Abilities.Fighter : $(call PACKAGE_OBJS,com.planet_ink.coffee_mud.Abilities.Fighter)
com.planet_ink.coffee_mud.Abilities.interfaces : $(call PACKAGE_OBJS,com.planet_ink.coffee_mud.Abilities.interfaces)
com.planet_ink.coffee_mud.Abilities.Languages : $(call PACKAGE_OBJS,com.planet_ink.coffee_mud.Abilities.Languages)
com.planet_ink.coffee_mud.Abilities.Misc : $(call PACKAGE_OBJS,com.planet_ink.coffee_mud.Abilities.Misc)
com.planet_ink.coffee_mud.Abilities.Paladin : $(call PACKAGE_OBJS,com.planet_ink.coffee_mud.Abilities.Paladin)
com.planet_ink.coffee_mud.Abilities.Poisons : $(call PACKAGE_OBJS,com.planet_ink.coffee_mud.Abilities.Poisons)
com.planet_ink.coffee_mud.Abilities.Prayers : $(call PACKAGE_OBJS,com.planet_ink.coffee_mud.Abilities.Prayers)
com.planet_ink.coffee_mud.Abilities.Properties : $(call PACKAGE_OBJS,com.planet_ink.coffee_mud.Abilities.Properties)
com.planet_ink.coffee_mud.Abilities.Ranger : $(call PACKAGE_OBJS,com.planet_ink.coffee_mud.Abilities.Ranger)
com.planet_ink.coffee_mud.Abilities.Skills : $(call PACKAGE_OBJS,com.planet_ink.coffee_mud.Abilities.Skills)
com.planet_ink.coffee_mud.Abilities.Songs : $(call PACKAGE_OBJS,com.planet_ink.coffee_mud.Abilities.Songs)
com.planet_ink.coffee_mud.Abilities.Specializations : $(call PACKAGE_OBJS,com.planet_ink.coffee_mud.Abilities.Specializations)
com.planet_ink.coffee_mud.Abilities.Spells : $(call PACKAGE_OBJS,com.planet_ink.coffee_mud.Abilities.Spells)
com.planet_ink.coffee_mud.Abilities.SuperPowers : $(call PACKAGE_OBJS,com.planet_ink.coffee_mud.Abilities.SuperPowers)
com.planet_ink.coffee_mud.Abilities.Tech : $(call PACKAGE_OBJS,com.planet_ink.coffee_mud.Abilities.Tech)
com.planet_ink.coffee_mud.Abilities.Thief : $(call PACKAGE_OBJS,com.planet_ink.coffee_mud.Abilities.Thief)
com.planet_ink.coffee_mud.Abilities.Traps : $(call PACKAGE_OBJS,com.planet_ink.coffee_mud.Abilities.Traps)
com.planet_ink.coffee_mud.Areas.interfaces : $(call PACKAGE_OBJS,com.planet_ink.coffee_mud.Areas.interfaces)
com.planet_ink.coffee_mud.Behaviors.interfaces : $(call PACKAGE_OBJS,com.planet_ink.coffee_mud.Behaviors.interfaces)
com.planet_ink.coffee_mud.CharClasses.interfaces : $(call PACKAGE_OBJS,com.planet_ink.coffee_mud.CharClasses.interfaces)
com.planet_ink.coffee_mud.Commands.interfaces : $(call PACKAGE_OBJS,com.planet_ink.coffee_mud.Commands.interfaces)
com.planet_ink.coffee_mud.Common.interfaces : $(call PACKAGE_OBJS,com.planet_ink.coffee_mud.Common.interfaces)
com.planet_ink.coffee_mud.core.collections : $(call PACKAGE_OBJS,com.planet_ink.coffee_mud.core.collections)
com.planet_ink.coffee_mud.core.database : $(call PACKAGE_OBJS,com.planet_ink.coffee_mud.core.database)
com.planet_ink.coffee_mud.core.exceptions : $(call PACKAGE_OBJS,com.planet_ink.coffee_mud.core.exceptions)
com.planet_ink.coffee_mud.core.interfaces : $(call PACKAGE_OBJS,com.planet_ink.coffee_mud.core.interfaces)
com.planet_ink.coffee_mud.core.intermud : $(call PACKAGE_OBJS,com.planet_ink.coffee_mud.core.intermud)
com.planet_ink.coffee_mud.core.smtp : $(call PACKAGE_OBJS,com.planet_ink.coffee_mud.core.smtp)
com.planet_ink.coffee_mud.core.threads : $(call PACKAGE_OBJS,com.planet_ink.coffee_mud.core.threads)
com.planet_ink.coffee_mud.core.intermud.cm1 : $(call PACKAGE_OBJS,com.planet_ink.coffee_mud.core.intermud.cm1)
com.planet_ink.coffee_mud.core.intermud.cm1.commands : $(call PACKAGE_OBJS,com.planet_ink.coffee_mud.core.intermud.cm1.commands)
com.planet_ink.coffee_mud.core.intermud.imc2 : $(call PACKAGE_OBJS,com.planet_ink.coffee_mud.core.intermud.imc2)
com.planet_ink.coffee_mud.core.intermud.i3 : $(call PACKAGE_OBJS,com.planet_ink.coffee_mud.core.intermud.i3)
com.planet_ink.coffee_mud.core.intermud.i3.net : $(call PACKAGE_OBJS,com.planet_ink.coffee_mud.core.intermud.i3.net)
com.planet_ink.coffee_mud.core.intermud.i3.packets : $(call PACKAGE_OBJS,com.planet_ink.coffee_mud.core.intermud.i3.packets)
com.planet_ink.coffee_mud.core.intermud.i3.persist : $(call PACKAGE_OBJS,com.planet_ink.coffee_mud.core.intermud.i3.persist)
com.planet_ink.coffee_mud.core.intermud.i3.server : $(call PACKAGE_OBJS,com.planet_ink.coffee_mud.core.intermud.i3.server)
com.planet_ink.coffee_mud.Exits.interfaces : $(call PACKAGE_OBJS,com.planet_ink.coffee_mud.Exits.interfaces)
com.planet_ink.coffee_mud.Items.Armor : $(call PACKAGE_OBJS,com.planet_ink.coffee_mud.Items.Armor)
com.planet_ink.coffee_mud.Items.Basic : $(call PACKAGE_OBJS,com.planet_ink.coffee_mud.Items.Basic)
com.planet_ink.coffee_mud.Items.BasicTech : $(call PACKAGE_OBJS,com.planet_ink.coffee_mud.Items.BasicTech)
com.planet_ink.coffee_mud.Items.ClanItems : $(call PACKAGE_OBJS,com.planet_ink.coffee_mud.Items.ClanItems)
com.planet_ink.coffee_mud.Items.CompTech : $(call PACKAGE_OBJS,com.planet_ink.coffee_mud.Items.CompTech)
com.planet_ink.coffee_mud.Items.interfaces : $(call PACKAGE_OBJS,com.planet_ink.coffee_mud.Items.interfaces)
com.planet_ink.coffee_mud.Items.MiscMagic : $(call PACKAGE_OBJS,com.planet_ink.coffee_mud.Items.MiscMagic)
com.planet_ink.coffee_mud.Items.Software : $(call PACKAGE_OBJS,com.planet_ink.coffee_mud.Items.Software)
com.planet_ink.coffee_mud.Items.Weapons : $(call PACKAGE_OBJS,com.planet_ink.coffee_mud.Items.Weapons)
com.planet_ink.coffee_mud.Libraries.interfaces : $(call PACKAGE_OBJS,com.planet_ink.coffee_mud.Libraries.interfaces)
com.planet_ink.coffee_mud.Libraries.layouts : $(call PACKAGE_OBJS,com.planet_ink.coffee_mud.Libraries.layouts)
com.planet_ink.coffee_mud.Locales.interfaces : $(call PACKAGE_OBJS,com.planet_ink.coffee_mud.Locales.interfaces)
com.planet_ink.coffee_mud.MOBS.interfaces : $(call PACKAGE_OBJS,com.planet_ink.coffee_mud.MOBS.interfaces)
com.planet_ink.coffee_mud.Races.interfaces : $(call PACKAGE_OBJS,com.planet_ink.coffee_mud.Races.interfaces)
com.planet_ink.coffee_mud.Tests : $(call PACKAGE_OBJS,com.planet_ink.coffee_mud.Tests)
com.planet_ink.coffee_mud.Tests.interfaces : $(call PACKAGE_OBJS,com.planet_ink.coffee_mud.Tests.interfaces)
com.planet_ink.coffee_mud.WebMacros.grinder : $(call PACKAGE_OBJS,com.planet_ink.coffee_mud.WebMacros.grinder)
com.planet_ink.coffee_mud.WebMacros.interfaces : $(call PACKAGE_OBJS,com.planet_ink.coffee_mud.WebMacros.interfaces)
com.planet_ink.miniweb.converters : $(call PACKAGE_OBJS,com.planet_ink.miniweb.converters)
com.planet_ink.miniweb.http : $(call PACKAGE_OBJS,com.planet_ink.miniweb.http)
com.planet_ink.miniweb.interfaces : $(call PACKAGE_OBJS,com.planet_ink.miniweb.interfaces)
com.planet_ink.miniweb.server : $(call PACKAGE_OBJS,com.planet_ink.miniweb.server)
com.planet_ink.miniweb.servlets : $(call PACKAGE_OBJS,com.planet_ink.miniweb.servlets)
com.planet_ink.miniweb.util : $(call PACKAGE_OBJS,com.planet_ink.miniweb.util)
com.planet_ink.siplet.applet : $(call PACKAGE_OBJS,com.planet_ink.siplet.applet)
com.planet_ink.siplet.support : $(call PACKAGE_OBJS,com.planet_ink.siplet.support)