Some tweaks to Lua docs
[lsnes.git] / src / interface / Makefile
blob652a488d1d82a8bc5e40303bd3a08dafe27fb2f0
1 OBJECTS=$(patsubst %.cpp,%.$(OBJECT_SUFFIX),$(wildcard *.cpp))
3 .PRECIOUS: %.$(OBJECT_SUFFIX) %.files
5 __all__.files: $(OBJECTS)
6 lua ../genfilelist.lua $^ >$@
7 touch __all__.ldflags
9 %.$(OBJECT_SUFFIX): %.cpp %.cpp.dep
10 $(REALCC) $(CFLAGS) -c -o $@ $< -I../../include
12 precheck:
13 ../../buildaux/mkdeps.exe ../../include -- *.cpp
14 @true
16 forcelook:
17 @true
19 clean:
20 rm -f *.$(OBJECT_SUFFIX) __all__.ldflags __all__.files