Guest User

Untitled

a guest
Apr 25th, 2018
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. CFLAGS += -O3 -I.
  2.  
  3. PREFIX ?= /opt/local/
  4. INSTALL_PROGRAM ?= ${INSTALL} -c -s -m 555
  5. INSTALL_MAN ?= ${INSTALL} -c -m 444
  6.  
  7. all: ft
  8. compression.o: compression.c
  9. main.o: main.c
  10. ft: main.o compression.o
  11. $(LD) main.o compression.o -lpng -lz -lcrypto -lc -lcrt1.o -L$(PREFIX)lib/ -o ft
  12.  
  13. clean:
  14. rm *.o ft
Add Comment
Please, Sign In to add comment