mirror of
https://github.com/libretro/scummvm.git
synced 2025-02-12 06:00:48 +00:00
![Kaloyan Chehlarski](/assets/img/avatar_default.png)
Added code for reading .cif files, and combining them into a ciftree, which is then to be written to nancy.dat. Removed the nancy2_patchtree binary file, and added the four source files in its place.
14 lines
203 B
Makefile
14 lines
203 B
Makefile
|
|
MODULE := devtools/create_nancy
|
|
|
|
MODULE_OBJS := \
|
|
cif.o \
|
|
create_nancy.o \
|
|
file.o
|
|
|
|
# Set the name of the executable
|
|
TOOL_EXECUTABLE := create_nancy
|
|
|
|
# Include common rules
|
|
include $(srcdir)/rules.mk
|