Makefile
changeset 12 52322e5cc6bb
parent 2 48e601bfbca6
child 13 9e590e7ef108
equal deleted inserted replaced
11:339675ac5fd3 12:52322e5cc6bb
     1 
     1 SHELL = /bin/sh
     2 
     2 
     3 ifeq '' '$(HOME)'
     3 ifeq '' '$(HOME)'
     4   $(error HOME env var and prefix var are not set!)
     4   $(error HOME env var not set!)
     5 endif
     5 endif
     6 
     6 
     7 host_os = linux
     7 host_os = linux
     8 ifneq '' '$(WINDRIVE)'         # TODO
     8 ifneq '' '$(COMSPEC)'
     9   host_os = windows
     9   host_os = windows
    10 endif
    10 endif
    11 
    11 
    12 .PHONY: all install uninstall clean distclean
    12 .PHONY: all install uninstall clean distclean
    13 
    13