Advertisement
Guest User

Untitled

a guest
Nov 21st, 2017
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. CC=gcc
  2. CFLAGS=-Wall -Wextra -pedantic -std=c99
  3.  
  4. all: main.o scanner.o expr_parser.c
  5. $(CC) $(CFLAGS) $^
  6.  
  7. main.o: types.c expr_parser.h scanner.h
  8. $(CC) -c $(CFLAGS) $<
  9.  
  10. %.o: %.c %.h
  11. $(CC) -c $(CFLAGS) $<
  12.  
  13. clean:
  14. rm -rf *.o a.out
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement