- Timestamp:
- 02/09/12 20:34:02 (13 years ago)
- 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)
- Location:
- src/lem
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
src/lem/Makefile
r5f4d9c3 rcfdf333 1 include ../../config.mak 2 1 3 LDFLAGS += -static 2 4 CXXFLAGS += -O2 -fpermissive … … 40 42 rm cmdline.* || true 41 43 42 copy: 43 ifdef UTT_BIN_DIR 44 cp lem $(UTT_BIN_DIR) 44 .PHONY: install 45 install: 46 ifdef BIN_DIR 47 install -m 0755 lem $(BIN_DIR) 45 48 endif 49 50 .PHONY: uninstall 51 uninstall: 52 ifdef BIN_DIR 53 rm $(BIN_DIR)/lem 54 endif -
src/lem/main.cc
r5f4d9c3 rcfdf333 33 33 lem = new AuxLem(dictionary); 34 34 else 35 fprintf(stderr,"lem: Invalid dictionary file extension.\n");35 fprintf(stderr,"lem: Dictionary file not found.\n"); 36 36 37 37 Words tab;
Note: See TracChangeset
for help on using the changeset viewer.