utils

small programs, scripts and utils
git clone https://git.e1e0.net/utils.git
Log | Files | Refs

Makefile (235B)


      1 CC = clang
      2 PREFIX = /usr/local
      3 
      4 .PHONY: all clean
      5 .SUFFIXES: .in.1 .1
      6 
      7 all: getcwd
      8 
      9 clean:
     10 	rm -f getcwd
     11 
     12 install: all
     13 	install -d -m 0755 $(PREFIX)/bin
     14 	install -m 0755 getcwd $(PREFIX)/bin
     15 
     16 getcwd: getcwd.o
     17 	$(CC) -o getcwd getcwd.o