spaces
This commit is contained in:
parent
2f2c4b7ff4
commit
1eb1e1e1f4
4 changed files with 16 additions and 16 deletions
|
@ -1,5 +1,5 @@
|
||||||
CC = gcc
|
CC = gcc
|
||||||
RM = rm
|
RM = rm
|
||||||
|
|
||||||
SOURCES = $(wildcard src/*.c)
|
SOURCES = $(wildcard src/*.c)
|
||||||
OBJETS = $(patsubst %.c,%.c.o,$(notdir $(SOURCES)))
|
OBJETS = $(patsubst %.c,%.c.o,$(notdir $(SOURCES)))
|
||||||
|
|
12
cpp/Makefile
12
cpp/Makefile
|
@ -1,13 +1,13 @@
|
||||||
CXX = g++
|
CXX = g++
|
||||||
RM = rm
|
RM = rm
|
||||||
|
|
||||||
SOURCES = $(wildcard src/*.cpp)
|
SOURCES = $(wildcard src/*.cpp)
|
||||||
OBJETS = $(patsubst %.cpp,%.cpp.o,$(notdir $(SOURCES)))
|
OBJETS = $(patsubst %.cpp,%.cpp.o,$(notdir $(SOURCES)))
|
||||||
|
|
||||||
CXXFLAGS = --std=c++11
|
CXXFLAGS = --std=c++11
|
||||||
|
|
||||||
EXE = example
|
EXE = example
|
||||||
EXE_EXT = out
|
EXE_EXT = out
|
||||||
|
|
||||||
%.cpp.o: src/%.cpp
|
%.cpp.o: src/%.cpp
|
||||||
$(CXX) -c -o $@ $< $(CXXFLAGS)
|
$(CXX) -c -o $@ $< $(CXXFLAGS)
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
NAME = document
|
NAME = document
|
||||||
|
|
||||||
TEX = $(NAME).tex
|
TEX = $(NAME).tex
|
||||||
SRC = $(TEX)
|
SRC = $(TEX)
|
||||||
PDF = $(TEX:.tex=.pdf)
|
PDF = $(TEX:.tex=.pdf)
|
||||||
|
|
||||||
TEXMK = latexmk -shell-escape -lualatex
|
TEXMK = latexmk -shell-escape -lualatex
|
||||||
|
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
NAME = slides
|
NAME = slides
|
||||||
|
|
||||||
TEX = $(NAME).tex
|
TEX = $(NAME).tex
|
||||||
SRC = $(TEX)
|
SRC = $(TEX)
|
||||||
PDF = $(TEX:.tex=.pdf)
|
PDF = $(TEX:.tex=.pdf)
|
||||||
|
|
||||||
TEXMK = latexmk -lualatex -shell-escape
|
TEXMK = latexmk -lualatex -shell-escape
|
||||||
WGET = wget -q --show-progress
|
WGET = wget -q --show-progress
|
||||||
|
|
Loading…
Reference in a new issue