# Makefile for Sauron Linux BBS
#
##############################################################################
topdir = ..
include $(topdir)/Makefile.inc

FILES = $(wildcard *)
###############################################################################

.PHONY: all
all : all
	install -m 777 -d $(DESTDIR)sys
	for f in $(FILES); do \
                install -m 0666  $$f $(DESTDIR)sys/; \
        done
	rm -f $(DESTDIR)sys/Makefile
clean:

