Files
dotfiles/.emacs.snippets/makefile-gmake-mode/make
2023-10-11 21:51:24 +02:00

11 lines
183 B
Plaintext
Executable File

# -*- mode: snippet -*-
# name: make
# key: make
# expand-env: ((yas-indent-line 'fixed))
# --
CFLAGS=-Wall -Wextra -std=c11 -pedantic
LIBS=
$1: $2
$(CC) $(CFLAGS) -o $1 $2 $(LIBS)