# Makefile for symlinks 0.4
 
all: symlinks

symlinks: symlinks.c
	gcc -O2 -N -s -o symlinks symlinks.c
 
install: all symlinks.8
	install -m 755 -o root -g root symlinks /usr/bin
	install -m 644 -o root -g root symlinks.8 /usr/man/man8

clean:
	rm -f symlinks *.o core
