diff options
Diffstat (limited to 'apps/xauth/makefile')
-rw-r--r-- | apps/xauth/makefile | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/apps/xauth/makefile b/apps/xauth/makefile new file mode 100644 index 000000000..d14cf9e35 --- /dev/null +++ b/apps/xauth/makefile @@ -0,0 +1,22 @@ +TTYAPP = xauth + +INCLUDELIBFILES = \ + ..\common\$(OBJDIR)\common.lib \ + $(MHMAKECONF)\libxcb\src\$(OBJDIR)\libxcb.lib \ + $(MHMAKECONF)\libXau\$(OBJDIR)\libXau.lib \ + $(MHMAKECONF)\libXmu\src\$(OBJDIR)\libXmu.lib \ + $(MHMAKECONF)\libXext\src\$(OBJDIR)\libXext.lib \ + $(MHMAKECONF)\libX11\$(OBJDIR)\libX11.lib + +LIBDIRS=$(dir $(INCLUDELIBFILES)) + +load_makefile $(LIBDIRS:%$(OBJDIR)\=%makefile MAKESERVER=0 DEBUG=$(DEBUG);) + +LINKLIBS += $(PTHREADLIB) + +CSRCS = \ + gethost.c \ + parsedpy.c \ + process.c \ + xauth.c + |