summaryrefslogtreecommitdiff
path: root/GuixSocial/Makefile
diff options
context:
space:
mode:
authorEkaitz Zarraga <ekaitz@elenq.tech>2024-07-11 23:02:32 +0200
committerEkaitz Zarraga <ekaitz@elenq.tech>2024-07-11 23:25:34 +0200
commit3e8d5c226fe32c8b2b376daf56f775bc87f4a882 (patch)
tree31508b025be8b68b3b2d00de6cb1a8d2649e0467 /GuixSocial/Makefile
parentc3cd50085e400541e595a7852f84df680bb1dd14 (diff)
Add Guix.social talk about Guix RISCV bootstrapHEADmaster
Diffstat (limited to 'GuixSocial/Makefile')
-rw-r--r--GuixSocial/Makefile16
1 files changed, 16 insertions, 0 deletions
diff --git a/GuixSocial/Makefile b/GuixSocial/Makefile
new file mode 100644
index 0000000..75b713c
--- /dev/null
+++ b/GuixSocial/Makefile
@@ -0,0 +1,16 @@
+TARGET = presentation.pdf
+
+AUX = aux
+CONTENT = contents.latex
+
+all: $(TARGET)
+
+$(TARGET): $(CONTENT)
+ mkdir -p $(AUX)
+ pdflatex -output-directory=$(AUX) $(CONTENT)
+ cp $(AUX)/*.pdf .
+
+clean:
+ rm -r $(TARGET) $(AUX)
+
+.PHONY: all clean