mirror of
https://github.com/chris2511/xca.git
synced 2026-09-14 11:06:19 +05:00
28 lines
644 B
Plaintext
28 lines
644 B
Plaintext
|
|
Next to the usual configuration script,
|
|
there is an alternative way to build xca.
|
|
|
|
At least on unix, one can use qmake to create a makefile
|
|
for building. Maybe this will help ,if you have a weired setup.
|
|
|
|
$ qmake -o makefile
|
|
|
|
At least on debian, the qmake command is "qmake-qt4"
|
|
|
|
creates the makefile. I recommend makefile to not overwrite Makefile
|
|
and also assures, that it is used instead of the original Makefile.
|
|
|
|
Now you need to create the file Local.h
|
|
$ cat >local.h <<EOF
|
|
> #define PREFIX "/usr/local"
|
|
> #define ETC "/etc/xca"
|
|
> #define VER "0.6.2"
|
|
> EOF
|
|
|
|
or you call ./configure to create it for you.
|
|
|
|
now just build XCA with
|
|
|
|
$ make
|
|
|