aboutsummaryrefslogtreecommitdiff
path: root/makefile
diff options
context:
space:
mode:
Diffstat (limited to 'makefile')
-rw-r--r--makefile10
1 files changed, 10 insertions, 0 deletions
diff --git a/makefile b/makefile
index ba3219bc..2c68f454 100644
--- a/makefile
+++ b/makefile
@@ -106,6 +106,16 @@ $(LUA_T): $(LUA_O) $(CORE_T)
106$(LUAC_T): $(LUAC_O) $(CORE_T) 106$(LUAC_T): $(LUAC_O) $(CORE_T)
107 $(CC) -o $@ $(MYLDFLAGS) $(LUAC_O) $(CORE_T) $(LIBS) $(MYLIBS) 107 $(CC) -o $@ $(MYLDFLAGS) $(LUAC_O) $(CORE_T) $(LIBS) $(MYLIBS)
108 108
109llex.o:
110 $(CC) $(CFLAGS) -Os -c llex.c
111
112lparser.o:
113 $(CC) $(CFLAGS) -Os -c lparser.c
114
115lcode.o:
116 $(CC) $(CFLAGS) -Os -c lcode.c
117
118
109clean: 119clean:
110 $(RM) $(ALL_T) $(ALL_O) 120 $(RM) $(ALL_T) $(ALL_O)
111 121