13 lines
211 B
Makefile
13 lines
211 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
|
||
|
|