Skip to content

Commit

Permalink
Added summary and makefile.
Browse files Browse the repository at this point in the history
  • Loading branch information
Julien Delplanque committed May 2, 2016
1 parent 0c3888d commit a5a6728
Show file tree
Hide file tree
Showing 3 changed files with 577 additions and 0 deletions.
38 changes: 38 additions & 0 deletions resumes/xavier_dubuc/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
################################################################################
############################ Variables to change ###############################
##### Sources directory
SRC_DIR = src

##### file to compile, without tex extension;
NAME = gcti

##### Executable/output to use: PDFLATEX, DVILUATEX
CC = $(PDFLATEX)
################################################################################

################################################################################
############################# Constant variables ###############################
##### Build name file
SRC = $(NAME).tex

##### Compilers
PDFLATEX = pdflatex
DVILUATEX = dviluatex
################################################################################

################################################################################
############################### Rules ##########################################
$(NAME):
cd $(SRC_DIR) && $(CC) -output-directory ../ $(SRC)
cd $(SRC_DIR) && $(CC) -output-directory ../ $(SRC)

zip: fclean $(NAME)
$(MAKE) clean
zip -r $(NAME).zip . -x *.git*

clean:
$(RM) -f $(NAME).out $(NAME).aux $(NAME).toc $(NAME).log $(NAME).tex.backup $(NAME).nav $(NAME).snm

fclean: clean
$(RM) -f $(NAME).pdf $(NAME).zip $(NAME).dvi
################################################################################
Loading

0 comments on commit a5a6728

Please sign in to comment.