Changeset cfdf333 for src/lem/Makefile


Ignore:
Timestamp:
02/09/12 20:34:02 (12 years ago)
Author:
Tomasz Obrebski <to@…>
Branches:
master
Children:
ac25afd
Parents:
2ff1f65
git-author:
Tomasz Obrebski <to@…> (02/09/12 20:34:02)
git-committer:
Tomasz Obrebski <to@…> (02/09/12 20:34:02)
Message:

Naprawy dotyczace oblugi plikow konfiguracyjnych.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/lem/Makefile

    r5f4d9c3 rcfdf333  
     1include ../../config.mak 
     2 
    13LDFLAGS += -static 
    24CXXFLAGS += -O2 -fpermissive 
     
    4042        rm cmdline.* || true 
    4143 
    42 copy: 
    43 ifdef UTT_BIN_DIR 
    44         cp lem $(UTT_BIN_DIR) 
     44.PHONY: install 
     45install: 
     46ifdef BIN_DIR 
     47        install -m 0755 lem $(BIN_DIR) 
    4548endif 
     49 
     50.PHONY: uninstall 
     51uninstall: 
     52ifdef BIN_DIR 
     53        rm $(BIN_DIR)/lem 
     54endif 
Note: See TracChangeset for help on using the changeset viewer.