Makefile 283 B

12345678910111213141516
  1. CFLAGS=-g -Wall
  2. TARGETS= testget
  3. all: $(TARGETS)
  4. rclient.o ptwist168.o testget.o:: ptwist.h
  5. testget: testget.c rclient.o ptwist168.o ptwist.h
  6. gcc -g -o $@ $^ -I/home/sltiheen/Downloads/include/openssl libssl.a libcrypto.a -ldl
  7. clean:
  8. -rm *.o
  9. veryclean: clean
  10. -rm $(TARGETS)