Advertisement
Guest User

Untitled

a guest
Apr 21st, 2017
286
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. CC = gcc
  2. CFLAGS = -ansi -Wall -g -O0 -Wwrite-strings -Wshadow -pedantic-errors -fstack-protector-all
  3. PROGS = shell_jr
  4.  
  5. all : $(PROGS)
  6.  
  7. shell_jr: shell_jr.o
  8. $(CC) -o shell_jr shell_jr.o
  9.  
  10. shell_jr.o: shell_jr.c
  11. $(CC) $(CFLAGS) -c shell_jr.c
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement