mirror of
https://github.com/michaelrsweet/pdfio.git
synced 2025-08-28 14:52:50 +02:00
Add actual example programs from prior examples, start documentation updates.
This commit is contained in:
@@ -20,7 +20,9 @@ LIBS = -L.. -lpdfio -lz
|
||||
# Targets
|
||||
TARGETS = \
|
||||
code128 \
|
||||
md2pdf
|
||||
image2pdf \
|
||||
md2pdf \
|
||||
pdfioinfo
|
||||
|
||||
|
||||
# Make everything
|
||||
@@ -37,10 +39,20 @@ code128: code128.c
|
||||
$(CC) $(CFLAGS) -o $@ code128.c $(LIBS)
|
||||
|
||||
|
||||
# image2pdf
|
||||
image2pdf: image2pdf.c
|
||||
$(CC) $(CFLAGS) -o $@ image2pdf.c $(LIBS)
|
||||
|
||||
|
||||
# md2pdf
|
||||
md2pdf: md2pdf.c mmd.c mmd.h
|
||||
$(CC) $(CFLAGS) -o $@ md2pdf.c mmd.c $(LIBS)
|
||||
|
||||
|
||||
# pdfioinfo
|
||||
pdfioinfo: pdfioinfo.c
|
||||
$(CC) $(CFLAGS) -o $@ pdfioinfo.c $(LIBS)
|
||||
|
||||
|
||||
# Common dependencies...
|
||||
$(TARGETS): Makefile ../pdfio.h ../pdfio-content.h
|
||||
|
Reference in New Issue
Block a user