syscall-advent

System Call Advent Calendar
git clone git://code.dwrz.net/syscall-advent
Log | Files | Refs

makefile (119B)


      1 cat: cat.c
      2 	gcc cat.c -o cat
      3 
      4 run: ./cat
      5 	./cat cat.c makefile
      6 
      7 strace: ./cat
      8 	strace ./cat cat.c makefile > /dev/null