path:
root/
Makefile.am (
plain)
blob: 86381195e1ddafcd7df1c622520bd6a04ce546cc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
ACLOCAL_AMFLAGS = -I ax
SUBDIRS = src
indent :
indent \
src/*.c \
src/controller/*.c src/controller/*.sqc src/controller/*.h \
src/db/*.c src/db/*.sqc src/db/*.h \
src/model/*.c src/model/*.sqc src/model/*.h \
src/model/geometry/*.c src/mode/geometry/*.h \
src/util/*.c src/util/*.h \
src/util/amd_performance_monitor/*.c \
src/util/amd_performance_monitor/*.h \
src/view/*.c src/view/*.h
|