a3ed46f2c3
git-svn-id: svn://10.65.10.50/branches/R_10_00@23289 c028cbd2-c16b-5b4b-a496-9718f37d4682
13 lines
223 B
Makefile
13 lines
223 B
Makefile
#
|
|
# Makefile : Builds wxWindows utils for Unix.
|
|
#
|
|
|
|
OGL_SAMPLES=ogledit studio
|
|
|
|
all:
|
|
@for d in $(OGL_SAMPLES); do (cd $$d && $(MAKE)); done
|
|
|
|
clean:
|
|
@for d in $(OGL_SAMPLES); do (cd $$d && $(MAKE) clean); done
|
|
|