Advertisement
Guest User

Untitled

a guest
Dec 12th, 2019
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.13 KB | None | 0 0
  1. # variables
  2. CC=gcc
  3. CFLAGS=-std=c11 -Wall -Werror
  4. LDLIBS=
  5. OUTPUT=$@
  6.  
  7. # targets
  8. %: %.c
  9. $(CC) $(CFLAGS) $@.c $(LDLIBS) -o $(OUTPUT)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement