mirror of https://github.com/dirtbags/moth.git
58 lines
1.5 KiB
Makefile
58 lines
1.5 KiB
Makefile
DESTDIR = target
|
|
|
|
PYCDIR = $(DESTDIR)/usr/lib/python3.1/site-packages
|
|
CTFDIR = $(DESTDIR)/usr/lib/ctf
|
|
WWWDIR = $(DESTDIR)/usr/lib/www
|
|
|
|
FAKE = fakeroot -s fake -i fake
|
|
INSTALL = $(FAKE) install
|
|
|
|
PYC = __init__.pyc
|
|
PYC += config.pyc points.pyc teams.pyc
|
|
PYC += register.pyc scoreboard.pyc puzzler.pyc
|
|
PYC += flagd.pyc pointsd.pyc pointscli.pyc
|
|
PYC += histogram.pyc
|
|
#PYC += roshambo.pyc game.pyc
|
|
|
|
all: ctf.tce
|
|
|
|
target: $(PYC)
|
|
$(INSTALL) -d --mode=0755 --owner=100 $(DESTDIR)/var/lib/ctf
|
|
$(INSTALL) -d $(DESTDIR)/var/lib/ctf/disabled
|
|
touch $(DESTDIR)/var/lib/ctf/disabled/survey
|
|
|
|
$(INSTALL) -d $(PYCDIR)/ctf
|
|
$(INSTALL) $(PYC) $(PYCDIR)/ctf
|
|
|
|
$(INSTALL) -d $(DESTDIR)/usr/sbin
|
|
$(INSTALL) ctfd.py $(DESTDIR)/usr/sbin
|
|
|
|
$(INSTALL) -d $(WWWDIR)
|
|
$(INSTALL) index.html intro.html ctf.css grunge.png $(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.ctfd $(DESTDIR)/var/service/ctf/run
|
|
|
|
$(INSTALL) -d $(DESTDIR)/var/service/ctf/log
|
|
$(INSTALL) run.log.ctfd $(DESTDIR)/var/service/ctf/log/run
|
|
|
|
rm -rf $(WWWDIR)/puzzler
|
|
$(INSTALL) -d $(WWWDIR)/puzzler
|
|
$(INSTALL) -d $(CTFDIR)
|
|
./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)
|
|
|
|
ctf/%.pyc: ctf/%.py
|
|
python3 -c 'from ctf import $(notdir $*)'
|
|
|
|
%.pyc: ctf/%.pyc
|
|
cp $< $@
|