diff options
author | Hans-Joachim Lankenau <hjs@openoffice.org> | 2002-03-28 16:40:25 +0000 |
---|---|---|
committer | Hans-Joachim Lankenau <hjs@openoffice.org> | 2002-03-28 16:40:25 +0000 |
commit | 6f469bdd40139091fbeed5a696de591b143724f2 (patch) | |
tree | 9e7614adecac4774a1a7918deba25f0f2453f322 /sal/util | |
parent | 183db8d9b8601fa47274ede5deaa86199c47a108 (diff) |
corrected IF statement
Diffstat (limited to 'sal/util')
-rw-r--r-- | sal/util/makefile.mk | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/sal/util/makefile.mk b/sal/util/makefile.mk index 7fa078bb9ab0..22f86b84ef80 100644 --- a/sal/util/makefile.mk +++ b/sal/util/makefile.mk @@ -2,9 +2,9 @@ # # $RCSfile: makefile.mk,v $ # -# $Revision: 1.19 $ +# $Revision: 1.20 $ # -# last change: $Author: hjs $ $Date: 2002-03-26 15:51:52 $ +# last change: $Author: hjs $ $Date: 2002-03-28 17:40:25 $ # # The Contents of this file are made available subject to the terms of # either of the following licenses @@ -238,19 +238,7 @@ DEF1EXPORT1=SignalHandlerFunction $(SHL1TARGETN) : $(OUT)$/inc$/udkversion.h .ENDIF # "$(SHL1TARGETN)" != "" -.IF "$(GUI)"=="WNT" || "$(USE_SHALL)"!="4nt" - -$(OUT)$/inc$/udkversion.h: - echo #ifndef _SAL_UDKVERSION_H_ > $@ - echo #define _SAL_UDKVERSION_H_ >> $@ - echo. >> $@ - echo #define SAL_UDK_MAJOR "$(UDK_MAJOR)" >> $@ - echo #define SAL_UDK_MINOR "$(UDK_MINOR)" >> $@ - echo #define SAL_UDK_MICRO "$(UDK_MICRO)" >> $@ - echo. >> $@ - echo #endif >> $@ - -.ELSE +.IF "$(GUI)"=="UNX" || "$(USE_SHALL)"!="4nt" $(OUT)$/inc$/udkversion.h: echo '#ifndef _SAL_UDKVERSION_H_' > $@ @@ -262,5 +250,17 @@ $(OUT)$/inc$/udkversion.h: echo '' >> $@ echo '#endif' >> $@ +.ELSE + +$(OUT)$/inc$/udkversion.h: + echo #ifndef _SAL_UDKVERSION_H_ > $@ + echo #define _SAL_UDKVERSION_H_ >> $@ + echo. >> $@ + echo #define SAL_UDK_MAJOR "$(UDK_MAJOR)" >> $@ + echo #define SAL_UDK_MINOR "$(UDK_MINOR)" >> $@ + echo #define SAL_UDK_MICRO "$(UDK_MICRO)" >> $@ + echo. >> $@ + echo #endif >> $@ + .ENDIF |