13 lines
191 B
Makefile
13 lines
191 B
Makefile
###############################
|
|
# Makefile for Include Files
|
|
#
|
|
###############################
|
|
|
|
clean:
|
|
rm -f *~
|
|
|
|
distclean: clean
|
|
rm -f config.h locations.h snprintf.h
|
|
|
|
devclean: distclean
|