2018-02-04 13:28:14 +01:00
|
|
|
VERSION = 0.2
|
2018-01-21 10:31:38 +01:00
|
|
|
REVISION = $(shell git rev-list HEAD 2>/dev/null | wc -l)
|
|
|
|
LOCALE_MO = $(patsubst %.po,%.mo,$(wildcard locale/*.po))
|
|
|
|
|
2018-01-25 08:41:10 +01:00
|
|
|
SEARCHPATH += src
|
|
|
|
SEARCHPATH += src/combat
|
2018-01-28 10:40:43 +01:00
|
|
|
SEARCHPATH += src/entities
|
|
|
|
SEARCHPATH += src/entities/blobs
|
|
|
|
SEARCHPATH += src/entities/boss
|
2018-02-04 12:00:14 +01:00
|
|
|
SEARCHPATH += src/entities/bullets
|
2018-01-28 10:40:43 +01:00
|
|
|
SEARCHPATH += src/entities/cannons
|
|
|
|
SEARCHPATH += src/entities/decoration
|
2018-01-29 23:12:18 +01:00
|
|
|
SEARCHPATH += src/entities/evilBlobs
|
2018-01-30 09:29:09 +01:00
|
|
|
SEARCHPATH += src/entities/eyeDroids
|
2018-01-28 10:40:43 +01:00
|
|
|
SEARCHPATH += src/entities/items
|
|
|
|
SEARCHPATH += src/entities/misc
|
|
|
|
SEARCHPATH += src/entities/structures
|
|
|
|
SEARCHPATH += src/entities/traps
|
2018-01-28 13:01:39 +01:00
|
|
|
SEARCHPATH += src/game
|
|
|
|
SEARCHPATH += src/hub
|
|
|
|
SEARCHPATH += src/json
|
|
|
|
SEARCHPATH += src/system
|
|
|
|
SEARCHPATH += src/test
|
2018-01-25 08:41:10 +01:00
|
|
|
SEARCHPATH += src/util
|
|
|
|
SEARCHPATH += src/widgets
|
|
|
|
SEARCHPATH += src/world
|
|
|
|
|
2018-01-21 10:31:38 +01:00
|
|
|
vpath %.c $(SEARCHPATH)
|
|
|
|
vpath %.h $(SEARCHPATH)
|
|
|
|
|
|
|
|
DEPS += defs.h structs.h
|
|
|
|
|
2018-01-29 23:12:18 +01:00
|
|
|
OBJS += atlas.o atlasTest.o aquaBlob.o
|
2018-02-04 12:00:14 +01:00
|
|
|
OBJS += battery.o blaze.o bob.o boss.o blobBoss.o bullet.o
|
2018-02-05 23:08:35 +01:00
|
|
|
OBJS += camera.o cannon.o cardReader.o cell.o cherry.o combat.o controls.o consumable.o
|
2018-01-27 11:21:45 +01:00
|
|
|
OBJS += debris.o destructable.o door.o draw.o
|
2018-02-02 20:10:12 +01:00
|
|
|
OBJS += effects.o ending.o entities.o entity.o entityFactory.o exit.o explosions.o eyeDroid.o eyeDroidCommander.o evilBlob.o
|
2018-01-27 09:08:17 +01:00
|
|
|
OBJS += fleshChunk.o frost.o
|
2018-01-29 23:12:18 +01:00
|
|
|
OBJS += game.o grenade.o
|
2018-01-27 12:55:15 +01:00
|
|
|
OBJS += heart.o horizontalDoor.o horizontalLaserTrap.o hub.o hud.o
|
2018-01-28 17:33:37 +01:00
|
|
|
OBJS += i18n.o init.o infoPoint.o input.o io.o item.o items.o itemPad.o
|
2018-01-28 13:01:39 +01:00
|
|
|
OBJS += cJSON.o
|
2018-01-26 23:29:08 +01:00
|
|
|
OBJS += key.o keycard.o
|
2018-01-29 23:12:18 +01:00
|
|
|
OBJS += laser.o laserTrap.o lift.o lookup.o
|
|
|
|
OBJS += main.o map.o maths.o mia.o missile.o
|
2018-01-21 13:57:01 +01:00
|
|
|
OBJS += objectives.o
|
2018-01-30 09:29:09 +01:00
|
|
|
OBJS += particles.o player.o pistolBlob.o pistolDroid.o powerPoint.o powerPool.o pressurePlate.o pushBlock.o
|
2018-01-21 12:31:53 +01:00
|
|
|
OBJS += quadtree.o
|
2018-01-30 00:00:14 +01:00
|
|
|
OBJS += sound.o sprites.o structures.o
|
2018-01-27 12:55:15 +01:00
|
|
|
OBJS += tankCommander.o tankTrack.o teeka.o teleporter.o text.o textures.o title.o triggers.o
|
2018-01-24 23:15:24 +01:00
|
|
|
OBJS += unit.o util.o
|
2018-01-29 09:34:39 +01:00
|
|
|
OBJS += weapons.o weaponPickup.o widgets.o world.o worldLoader.o
|
2018-01-21 10:31:38 +01:00
|
|
|
|
|
|
|
# top-level rule to create the program.
|
|
|
|
all: $(PROG) $(LOCALE_MO)
|
|
|
|
|
|
|
|
# compiling other source files.
|
|
|
|
%.o: %.c %.h $(DEPS)
|
|
|
|
$(CC) $(CFLAGS) $(CXXFLAGS) -c $<
|
|
|
|
|
|
|
|
%.mo: %.po
|
|
|
|
msgfmt -c -o $@ $<
|
|
|
|
|
|
|
|
# cleaning everything that can be automatically recreated with "make".
|
|
|
|
clean:
|
|
|
|
$(RM) $(OBJS) $(PROG) $(LOCALE_MO)
|