Advertisement
Guest User

Untitled

a guest
May 30th, 2016
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.97 KB | None | 0 0
  1. # Author: Erwin Waterlander
  2. # Copyright (C) 2009-2014 Erwin Waterlander
  3. # This file is distributed under the same license as the dos2unix package.
  4.  
  5. prefix=..\usr
  6. ENABLE_NLS=
  7. LDFLAGS_EXTRA = -Zargs-wild -Zomf
  8.  
  9. ifdef ENABLE_NLS
  10. LIBS_EXTRA += -liconv
  11. endif
  12. ZIPOBJ_EXTRA =
  13.  
  14. all:
  15. $(MAKE) all EXE=.exe ENABLE_NLS=$(ENABLE_NLS) LDFLAGS_EXTRA="$(LDFLAGS_EXTRA)" LIBS_EXTRA="$(LIBS_EXTRA)" prefix=$(prefix) LINK="cp -f" UCS=
  16.  
  17. install:
  18. $(MAKE) install EXE=.exe ENABLE_NLS=$(ENABLE_NLS) LDFLAGS_EXTRA="$(LDFLAGS_EXTRA)" LIBS_EXTRA="$(LIBS_EXTRA)" prefix=$(prefix) LINK="cp -f" UCS=
  19.  
  20. uninstall:
  21. $(MAKE) uninstall EXE=.exe prefix=$(prefix)
  22.  
  23. clean:
  24. $(MAKE) clean EXE=.exe ENABLE_NLS=$(ENABLE_NLS) prefix=$(prefix)
  25.  
  26. mostlyclean:
  27. $(MAKE) mostlyclean EXE=.exe ENABLE_NLS=$(ENABLE_NLS) prefix=$(prefix)
  28.  
  29. dist:
  30. $(MAKE) dist-zip EXE=.exe prefix=$(prefix) VERSIONSUFFIX="-os2" ZIPOBJ_EXTRA="${ZIPOBJ_EXTRA}" ENABLE_NLS=$(ENABLE_NLS)
  31.  
  32. strip:
  33. $(MAKE) strip LINK="cp -f" EXE=.exe
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement