vim-snippets/snippets/make.snippets

32 lines
407 B
Plaintext
Raw Normal View History

2015-04-10 07:47:46 -04:00
# base
snippet base
.PHONY: clean, mrproper
CC = gcc
CFLAGS = -g -Wall
all : $1
%.o : %.c
$(CC) $(CFLAGS) -c -o $@ $<
${1:out} : $1.o
$(CC) $(CFLAGS) -o $@ $+
clean :
rm -f *.o core.*
mrproper : clean
rm -f $1
# add
snippet add
${1:out} : $1.o
$(CC) $(CFLAGS) -o $@ $+
# print
2015-04-10 14:00:19 -04:00
snippet print
print-%: ; @echo $*=$($*)
2015-04-10 07:47:46 -04:00
# ifeq
2011-09-23 22:09:53 -04:00
snippet ifeq
ifeq (${1:cond0},${2:cond1})
${0}
2011-09-23 22:09:53 -04:00
endif