mirror of https://github.com/dirtbags/moth.git
45 lines
1.1 KiB
Makefile
45 lines
1.1 KiB
Makefile
|
DESTDIR = target
|
||
|
|
||
|
CTFDIR = $(DESTDIR)/usr/lib/ctf
|
||
|
WWWDIR = $(DESTDIR)/usr/lib/www
|
||
|
|
||
|
FAKE = fakeroot -s fake -i fake
|
||
|
INSTALL = $(FAKE) install
|
||
|
|
||
|
PYC = config.pyc points.pyc game.pyc teams.pyc
|
||
|
PYC += register.pyc scoreboard.pyc puzzler.pyc
|
||
|
PYC += flagd.pyc pointsd.pyc pointscli.pyc
|
||
|
PYC += roshambo.pyc histogram.pyc
|
||
|
|
||
|
all: ctf.tce
|
||
|
|
||
|
target: $(PYC)
|
||
|
$(INSTALL) -d --mode=0755 --owner=100 $(DESTDIR)/var/lib/ctf
|
||
|
$(INSTALL) -d $(DESTDIR)/var/lib/ctf/disabled
|
||
|
|
||
|
$(INSTALL) -d $(CTFDIR)
|
||
|
$(INSTALL) $(PYC) $(CTFDIR)
|
||
|
$(INSTALL) uberserv.py $(CTFDIR)
|
||
|
|
||
|
$(INSTALL) -d $(WWWDIR)
|
||
|
$(INSTALL) index.html ctf.css $(WWWDIR)
|
||
|
$(FAKE) ln -s /var/lib/ctf/histogram.png $(WWWDIR)
|
||
|
$(INSTALL) register.cgi scoreboard.cgi puzzler.cgi $(WWWDIR)
|
||
|
|
||
|
$(INSTALL) -d $(DESTDIR)/var/service/ctf
|
||
|
$(INSTALL) run.uberserv $(DESTDIR)/var/service/ctf/run
|
||
|
|
||
|
rm -rf $(WWWDIR)/puzzler
|
||
|
$(INSTALL) -d $(WWWDIR)/puzzler
|
||
|
./mkpuzzles.py --htmldir=$(WWWDIR)/puzzler --keyfile=$(CTFDIR)/puzzler.keys
|
||
|
|
||
|
ctf.tce: target
|
||
|
$(FAKE) sh -c 'cd target && tar -czf - --exclude=placeholder --exclude=*~ .' > $@
|
||
|
|
||
|
clean:
|
||
|
rm -rf target
|
||
|
rm -f fake ctf.tce $(PYC)
|
||
|
|
||
|
%.pyc: %.py
|
||
|
python3 -c 'import $*'
|