home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-385-Vol-1of3.iso / x / xautolk.zip / XAUTOLK / xautolock / Makefile.std < prev    next >
Makefile  |  1993-01-28  |  477b  |  24 lines

  1. #
  2. #  Edit these to suit your needs.
  3. #
  4. #  SystemV is only used to select between fork and vfork. It doesn't hurt
  5. #  to have it defined to YES, but if your system has vfork, it's more
  6. #  efficient to comment this stuff out.
  7. #
  8. DEFINES = -DSystemV=YES
  9.  
  10. RM      = /bin/rm -f
  11. CC      = cc
  12. HDRS    = patchlevel.h
  13. SRCS    = xautolock.c
  14. OBJS    = xautolock.o
  15.  
  16. LIBS    = -lX11
  17.  
  18. xautolock: $(SRCS) 
  19.     $(RM) $@
  20.     $(CC) $(DEFINES) $(SRCS) -o $@ $(LIBS) 
  21.  
  22. clean:
  23.     $(RM) xautolock $(OBJS) core
  24.