diff options
| author | Bruce Hill <bitbucket@bruce-hill.com> | 2018-06-22 03:38:41 -0700 |
|---|---|---|
| committer | Bruce Hill <bitbucket@bruce-hill.com> | 2018-06-22 03:39:00 -0700 |
| commit | 11800f6fc2af204f62bb9add339259f520e70ea1 (patch) | |
| tree | ca11f11ffdecf5d6ca6be6777b4053d7080a66f8 /Makefile | |
| parent | 30f4391004ff6f3eb23569d6d96bbb22b0b67082 (diff) | |
Changed `make clean` to only clean up build files, not uninstall.
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -21,7 +21,7 @@ LIB_NOM_FILES= $(wildcard lib/*.nom) LIB_LUA_FILES= $(patsubst %.nom,%.lua,$(LIB_NOM_FILES)) PEG_FILE= nomsu.peg -NOMSU_HEADER=\#!$(LUA_BIN)\npackage.path = [[$(realpath $(NOMSU_LIB_DIR))/?.lua;]]..package.path\npackage.nomsupath = [[$(realpath $(NOMSU_LIB_DIR))]] +NOMSU_HEADER=\#!$(LUA_BIN)\npackage.path = [[$(NOMSU_LIB_DIR)/?.lua;]]..package.path\npackage.nomsupath = [[$(NOMSU_LIB_DIR)]] all: build optimize @@ -51,7 +51,7 @@ optimize: build $(CORE_LUA_FILES) $(LIB_LUA_FILES) .PHONY: clean clean: - rm -rf nomsu core/*.lua lib/*.lua $(NOMSU_BIN_DIR)/nomsu $(NOMSU_LIB_DIR) + rm -rf nomsu core/*.lua lib/*.lua .PHONY: install install: all |
