17 lines
497 B
Makefile
17 lines
497 B
Makefile
# NOTE: this is a GNU Makefile. You must use "gmake" rather than "make".
|
|
#
|
|
# Makefile for the threads assignment. The threads assignment must
|
|
# be done first!
|
|
#
|
|
# Copyright (c) 1992 The Regents of the University of California.
|
|
# All rights reserved. See copyright.h for copyright notice and limitation
|
|
# of liability and disclaimer of warranty provisions.
|
|
|
|
DEFINES = -DTHREADS
|
|
INCPATH = -I../threads -I../machine
|
|
C_OFILES = $(THREAD_O)
|
|
|
|
include ../Makefile.common
|
|
include ../Makefile.dep
|
|
|
|
|