1
0
mirror of https://github.com/amix/vimrc synced 2025-02-28 14:12:51 +08:00
amix-vimrc-mirror/sources_non_forked/vim-snippets/snippets/make.snippets

32 lines
402 B
Plaintext
Raw Normal View History

2015-07-13 18:22:46 +08: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
snippet print
print-%: ; @echo $*=$($*)
# ifeq
2012-08-17 11:41:25 +08:00
snippet ifeq
2015-07-13 18:22:46 +08:00
ifeq (${1:cond0}, ${2:cond1})
${0}
2012-08-17 11:41:25 +08:00
endif