# Makefile for compiling simple MiscKit examples
# Written and Copyright (C) 1994, by Don Yacktman, all rights reserved.

NAME = queuetest
TARGET_ARCHS = m68k i386
ARCHIFY = /usr/lib/arch_tool -archify_list
ARCH_FLAGS = `$(ARCHIFY) $(TARGET_ARCHS)`

all: $(NAME)

$(NAME):
	$(CC) -ObjC -O2 -pipe -L../../Source -I../../Headers -Wall $(ARCH_FLAGS) \
			-o $(NAME) $(NAME).m -lMiscKit -lNeXT_s
	strip $(NAME)

clean:
	rm -rf $(NAME)
