# -----------------------------------------------------------------------------
#	Tseng graphic drivers Makefile
# -----------------------------------------------------------------------------
#
#	Copyright (C) 1995, The GGI Project
#
# -----------------------------------------------------------------------------

SUBDIRS := $(shell find . -mindepth 1 -maxdepth 2 -name \.\* -prune -o -name Makefile -not -path ./Makefile -printf '%h ')
ifeq ($(TOPLEVEL)/.config, $(wildcard $(TOPLEVEL)/.config))
include $(TOPLEVEL)/.config
endif

DEBUGFLAGS = -DDEBUG

OBJECTS = et6000.o

include $(TOPLEVEL)/.make_rules

selected: $(GRAPH_TYPE).o
	@echo

ifeq ($(strip $(SUBDIRS)),)
include $(TOPLEVEL)/.non_recursive
else
include $(TOPLEVEL)/.recursive
endif
