Makefile 262 B

12345678910111213141516
  1. CFLAGS=-g -Wall
  2. TARGETS= testget
  3. all: $(TARGETS)
  4. rclient.o ptwist168.o testget.o:: ptwist.h
  5. testget: testget.o rclient.o ptwist168.o ptwist.h
  6. gcc -g -o $@ $^ -L../../../openssl/run/lib -lssl -lcrypto -ldl
  7. clean:
  8. -rm *.o
  9. veryclean: clean
  10. -rm $(TARGETS)