1# ======================================================================== 2# Copyright 1988-2006 University of Washington 3# 4# Licensed under the Apache License, Version 2.0 (the "License"); 5# you may not use this file except in compliance with the License. 6# You may obtain a copy of the License at 7# 8# http://www.apache.org/licenses/LICENSE-2.0 9# 10# 11# ======================================================================== 12 13# Program: Tools Makefile 14# 15# Author: Mark Crispin 16# Networks and Distributed Computing 17# Computing & Communications 18# University of Washington 19# Administration Building, AG-44 20# Seattle, WA 98195 21# Internet: MRC@CAC.Washington.EDU 22 23 24CC=cc 25RM=rm -f 26 27 28uahelper: 29 $(CC) -o uahelper uahelper.c $(LDFLAGS) 30 31clean: 32 sh -c '$(RM) *.o uahelper || true' 33 34# A monument to a hack of long ago and far away... 35love: 36 @echo 'not war?' 37