sparse

sparse file tool
git clone http://frotz.net/git/sparse.git
Log | Files | Refs | README

Makefile (219B)


      1 
      2 all: mksparse unsparse
      3 
      4 mksparse: mksparse.c util.c util.h
      5 	gcc -Wall -O2 -o mksparse mksparse.c util.c
      6 
      7 unsparse: unsparse.c util.c util.h
      8 	gcc -Wall -O2 -o unsparse unsparse.c util.c
      9 
     10 clean:
     11 	rm -f unsparse mksparse