When applying a patch, "git am" strips trailing whitespace, although they are present in the git formatted-patch. This way the committed file will be slightly different than the file re-generated by extractprototype.h It shouldn't hurt, but next run of extractprototype.h will add trailing spaces again and the resulting diff on XmPrivate.h will include more changes than actually needed. This may break some viscious circle after applying the patch, so enabling regeneration on LinuxArchitecture again. This patch does not add XmeFlushIconFileCache() needed by dtcreate.
25 lines
611 B
Plaintext
25 lines
611 B
Plaintext
XCOMM
|
|
XCOMM Generate XmPrivate.h containing ANSI C
|
|
XCOMM function prototypes extracted from the private
|
|
XCOMM include headers files
|
|
XCOMM
|
|
XCOMM libXm source from Motif (lib/Xm subdirectory)
|
|
XCOMM needs to be available in ../../imports/motif/lib/Xm
|
|
XCOMM
|
|
|
|
HEADERS = XmPrivate.h
|
|
ALLHEADERS = *.h
|
|
|
|
BuildIncludes($(HEADERS),Xm,..)
|
|
|
|
XCOMM We do not build with Motif sources on Linux, so this will never
|
|
XCOMM do the right thing on that platform. Just leave XmPrivate.h as-is.
|
|
|
|
XmPrivate.h: extractprototype.awk
|
|
awk -f extractprototype.awk $(MLIBSRC)/Xm/$(ALLHEADERS) > $@ || rm -f $@
|
|
|
|
depend::
|
|
|
|
clean::
|
|
|