diff options
author | toddb <empty> | 1987-09-14 17:48:06 +0000 |
---|---|---|
committer | toddb <empty> | 1987-09-14 17:48:06 +0000 |
commit | 855974bd9dd642604b5c61110a896744b3270a8e (patch) | |
tree | 2d2bacc9526960bb95fd8fec416a979027100c86 /xc/lib/oldX | |
parent | ba272186d576fd7e137303a7eaabdddfeedd3dcc (diff) |
Initial revision
Diffstat (limited to 'xc/lib/oldX')
-rw-r--r-- | xc/lib/oldX/Imakefile | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/xc/lib/oldX/Imakefile b/xc/lib/oldX/Imakefile new file mode 100644 index 000000000..487416dcf --- /dev/null +++ b/xc/lib/oldX/Imakefile @@ -0,0 +1,51 @@ + INCLUDES = -I$(TOP) -I$(INCLUDESRC) -I$(XLIBSRC) + DEFINES = -DUNIXCONN + INSTALLFLAGS = -m 0644 + SRCS = *.c + HEADERS = X10.h + +OBJS =\ + XDraw.o \ + XCrAssoc.o \ + XDelAssoc.o \ + XDestAssoc.o \ + XLookAssoc.o \ + XMakeAssoc.o + +#if DebugOldLibX && ProfileOldLibX +DebuggedAndProfiledLibraryObjectRule() +#else +# if DebugOldLibX +DebuggedLibraryObjectRule() +# else +# if ProfileOldLibX +ProfiledLibraryObjectRule() +# else +NormalLibraryObjectRule() +# endif +# endif +#endif + +NormalLibraryTarget(oldX,$(OBJS)) +LintLibraryTarget(oldX,*.c) +InstallLibrary(oldX,$(USRLIBDIR)) +InstallLintLibrary(oldX,$(USRLIBDIR)) +InstallMultiple($(HEADERS),$(INCDIR)) + + +#if ProfileOldLibX +ProfiledLibraryTarget(oldX,$(V10LIST)) +InstallLibrary(oldX_p,$(USRLIBDIR)) +#endif + +#if DebugOldLibX +DebuggedLibraryTarget(oldX,$(V10LIST)) +#endif + +DependTarget() + +# structure alignment errors can safely be ignored. +# complaints about qevent can be ignored too. + +lint: + $(LINT) -hubz ${INCLUDES} *.c > lint.log |