13 lines
197 B
Makefile
13 lines
197 B
Makefile
|
#### host, target, and site specific Makefile frags come in here.
|
||
|
|
||
|
srcdir = .
|
||
|
|
||
|
# Nothing to do...
|
||
|
all:
|
||
|
|
||
|
clean:
|
||
|
-rm -f *.o *.diff *~ *.bad core *.x
|
||
|
|
||
|
distclean: clean
|
||
|
-rm -f Makefile config.status
|