11 lines
183 B
Plaintext
Executable File
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)
|