diff options
Diffstat (limited to 'makefile')
-rw-r--r-- | makefile | 10 |
1 files changed, 10 insertions, 0 deletions
@@ -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 | ||
109 | llex.o: | ||
110 | $(CC) $(CFLAGS) -Os -c llex.c | ||
111 | |||
112 | lparser.o: | ||
113 | $(CC) $(CFLAGS) -Os -c lparser.c | ||
114 | |||
115 | lcode.o: | ||
116 | $(CC) $(CFLAGS) -Os -c lcode.c | ||
117 | |||
118 | |||
109 | clean: | 119 | clean: |
110 | $(RM) $(ALL_T) $(ALL_O) | 120 | $(RM) $(ALL_T) $(ALL_O) |
111 | 121 | ||