11 lines
322 B
Tcsh
11 lines
322 B
Tcsh
#!/bin/tcsh
|
|
###########################################################################
|
|
# FILE: make_example
|
|
# PURPOSE: Create Makefile from project file and then make QtTestRunner
|
|
# example.
|
|
###########################################################################
|
|
|
|
qmake qt_example.pro
|
|
make distclean
|
|
make
|