include ../../Makefile.conf
ifndef ARCH_COPTS
ARCH_COPTS = -O2
endif
ifndef INSTALL_DIRECTORY
INSTALL_DIRECTORY = /usr/local/bin
endif

CC     = gcc
CFLAGS = -Wall -pipe $(ARCH_COPTS) $(INCLUDE_NCURSES)
LIBS   = -L../../lib -lgus $(LIB_NCURSES)

all: gusmix

gcompile: all

gusmix: gusmix.c
	$(CC) $(CFLAGS) -o gusmix gusmix.c $(LIBS)

clean:
	rm -f *.o gusmix *~
