COREGALINUX_BASEDIR:=$(shell pwd)/../

all: 

include $(COREGALINUX_BASEDIR)Makefile.inc

install_static install_shared: install_etc

install_etc:
	@echo "copy /etc files from $(shell pwd)/etc"
	cd etc && tar -cf - * | (umask 022; tar -C $(INSTDIR)/etc -xf -)
	chown root:root -R $(INSTDIR)/etc

source:
static:
shared:
clean:
clean-source:

