# Copyright (C) 2007  Miriam Ruiz <little_miry@yahoo.es>
# Distributed under the same license as the game. See debian/copyright.

--- /dev/null
+++ b/Makefile
@@ -0,0 +1,11 @@
+GDC=gdc
+DSRC=$(shell find import src/abagames -name "*.d" | LC_ALL=C sort)
+EXE=a7xpg
+
+all: $(EXE)
+
+$(EXE): $(DSRC)
+	$(GDC) -o $@ -Iimport -Isrc -Wdeprecated $(DFLAGS) $(CFLAGS) $(CPPFLAGS) $(LDFLAGS) $(DSRC) -lSDL -lGL -lSDL_mixer
+
+clean:
+	rm -f $(EXE)
