Advertisement
Sam-Sampaio

Makefile

Sep 28th, 2020
2,291
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Make 0.15 KB | None | 0 0
  1. #Makefile simples
  2. CFLAGS += $(shell pkg-config --cflags json-c)
  3.  
  4. install:
  5.     gcc -Wall -Wextra $(CFLAGS) -o cep cep.c -lcurl -ljson-c
  6. clean:
  7.     rm -f cep
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement