#
# Copyright (c) by Jaroslav Kysela (Perex soft)
# This library can be compiled only on ELF systems
#

ifndef U_INS_DIR
U_INS_DIR = /usr/local/lib/gus/instruments
endif

all:
	@echo "What's?"

clean:
	rm -f *~


gcompile:

ginstall: clean gcompile

	mkdir -p $(U_INS_DIR)
	rm -f .files
	for i in *; do \
          if [ "$$i" != "Makefile" ]; then \
            install -m 755 -o root -g root $$i $(U_INS_DIR); \
  	    echo "$(U_INS_DIR)/$$i" >> .files; \
          fi \
	done
