get-ip

Simple C program to get your public ip from terminal
Log | Files | Refs | README

makefile (134B)


      1 
      2 CC = clang
      3 LIBS = -lcurl
      4 
      5 get-ip: main.c
      6 	$(CC) -std=c89 -Wall -o get-ip main.c $(LIBS)
      7 
      8 install: get-ip
      9 	cp ./get-ip /usr/local/bin