Added zathura, added org to ranger rifle, configured emacs
This commit is contained in:
12
emacs/.emacs.d/snippets/makefile-mode/template
Normal file
12
emacs/.emacs.d/snippets/makefile-mode/template
Normal file
@@ -0,0 +1,12 @@
|
||||
CC = gcc
|
||||
CFLAGS =
|
||||
RM = rm
|
||||
TARGET = $0
|
||||
|
||||
all: ${TARGET}
|
||||
|
||||
${TARGET}: ${TARGET}.c
|
||||
${CC} ${CFLAGS} -o ${TARGET} ${TARGET}.c
|
||||
|
||||
clean:
|
||||
${RM} ${TARGET}
|
||||
Reference in New Issue
Block a user