Compare commits

..

3 Commits

Author SHA1 Message Date
Colin Dean
03282c425b WIP: Adds PDF of binary
Work towards #11

TODO:

* The PS and the PDF don't actually have the correct dimensions. A part
of the data is cut-off of the PS and the PDF has no margins.
2018-04-08 14:41:59 -04:00
Colin Dean
c3d48030db Includes README in binary archive 2018-04-08 14:20:56 -04:00
Colin Dean
45750f333a Includes license in binary archive 2018-04-08 14:20:00 -04:00

View File

@ -22,6 +22,9 @@ ARCHIVE_PATH=optar-$(VERSION)-$(OS)-$(ARCH).tar.gz
BINARIES=optar unoptar
EXECUTABLES=$(BINARIES) pgm2ps
ARCHIVE_PATH_TAR=$(ARCHIVE_PATH).tar
ARCHIVE_PATH_PDF=$(ARCHIVE_PATH_TAR).pdf
all: optar unoptar
install:
@ -36,6 +39,8 @@ uninstall:
clean:
rm -f $(BINARIES) optar-*.tar.gz golay_codes.c *.o
rm -f $(ARCHIVE_PATH_PDF) $(ARCHIVE_PATH_TAR)
rm -f *.pgm *.ps
common.o: common.c optar.h
$(CC) -c $(CPPFLAGS) $(CFLAGS) -o $@ $<
@ -69,5 +74,14 @@ unoptar: unoptar.o common.o golay_codes.o parity.o
archive: $(ARCHIVE_PATH)
$(ARCHIVE_PATH): $(EXECUTABLES)
$(ARCHIVE_PATH): $(EXECUTABLES) COPYING README.md
tar czvf $@ $^
archive_pdf: $(ARCHIVE_PATH_PDF)
$(ARCHIVE_PATH_PDF): $(ARCHIVE_PATH) optar
#This is necessary because tar can be 0-padded and gzip cannot
tar cvf $(ARCHIVE_PATH_TAR) $<
./optar $(ARCHIVE_PATH_TAR) $(ARCHIVE_PATH_TAR)
./pgm2ps *.pgm
convert -density 600x600 -quality 100 *.ps $@