olefs

command line tools to extract data from OLE documents like doc, ppt, xls, msg
git clone https://logand.com/git/olefs.git/
Log | Files | Refs

Makefile (191B)


      1 ALL=cfb ppt
      2 CFLAGS=-Wall -Os
      3 LDFLAGS=
      4 
      5 all: $(ALL)
      6 
      7 cfb: cfb.c
      8 	$(CC) $(CFLAGS) -o $@ $< $(LDFLAGS)
      9 	strip $@
     10 
     11 ppt: ppt.c
     12 	$(CC) $(CFLAGS) -o $@ $< $(LDFLAGS)
     13 	strip $@
     14 
     15 clean:
     16 	rm -f $(ALL)