fxxkingusername commited on
Commit
7498dec
·
verified ·
1 Parent(s): 7fb279e

Upload paper/Makefile with huggingface_hub

Browse files
Files changed (1) hide show
  1. paper/Makefile +67 -0
paper/Makefile ADDED
@@ -0,0 +1,67 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Makefile for IEEE Conference Paper
2
+ # Targets: CVPR, ICCV, ECCV, NeurIPS, ICML
3
+
4
+ .PHONY: all clean cvpr iccv eccv neurips icml
5
+
6
+ # Default target
7
+ all: main.pdf
8
+
9
+ # Main compilation
10
+ main.pdf: main.tex *.png *.csv *.json
11
+ pdflatex main.tex
12
+ bibtex main
13
+ pdflatex main.tex
14
+ pdflatex main.tex
15
+
16
+ # Conference-specific targets
17
+ cvpr: main.pdf
18
+ @echo "Paper compiled for CVPR submission"
19
+ @echo "File: main.pdf"
20
+
21
+ iccv: main.pdf
22
+ @echo "Paper compiled for ICCV submission"
23
+ @echo "File: main.pdf"
24
+
25
+ eccv: main.pdf
26
+ @echo "Paper compiled for ECCV submission"
27
+ @echo "File: main.pdf"
28
+
29
+ neurips: main.pdf
30
+ @echo "Paper compiled for NeurIPS submission"
31
+ @echo "File: main.pdf"
32
+
33
+ icml: main.pdf
34
+ @echo "Paper compiled for ICML submission"
35
+ @echo "File: main.pdf"
36
+
37
+ # Clean auxiliary files
38
+ clean:
39
+ rm -f *.aux *.log *.out *.toc *.bbl *.blg *.fdb_latexmk *.fls *.synctex.gz
40
+
41
+ # Clean everything including PDF
42
+ cleanall: clean
43
+ rm -f *.pdf
44
+
45
+ # View the PDF (platform-specific)
46
+ view: main.pdf
47
+ @if command -v xdg-open > /dev/null; then \
48
+ xdg-open main.pdf; \
49
+ elif command -v open > /dev/null; then \
50
+ open main.pdf; \
51
+ else \
52
+ echo "Please open main.pdf manually"; \
53
+ fi
54
+
55
+ # Help
56
+ help:
57
+ @echo "Available targets:"
58
+ @echo " all - Compile the paper (default)"
59
+ @echo " cvpr - Compile for CVPR submission"
60
+ @echo " iccv - Compile for ICCV submission"
61
+ @echo " eccv - Compile for ECCV submission"
62
+ @echo " neurips - Compile for NeurIPS submission"
63
+ @echo " icml - Compile for ICML submission"
64
+ @echo " clean - Remove auxiliary files"
65
+ @echo " cleanall - Remove all generated files"
66
+ @echo " view - Open the PDF"
67
+ @echo " help - Show this help"