mirror of
https://github.com/OpenMW/openmw.git
synced 2025-01-24 00:23:53 +00:00
12 lines
225 B
Makefile
12 lines
225 B
Makefile
GCC=g++
|
|
|
|
all: bsa_file_test bsatool
|
|
|
|
bsa_file_test: bsa_file_test.cpp ../bsa_file.cpp
|
|
$(GCC) $^ -o $@
|
|
|
|
bsatool: bsatool.cpp ../bsa_file.cpp bsatool_cmd.c
|
|
$(GCC) $^ -o $@
|
|
|
|
bsatool_cmd.c: bsatool.ggo
|
|
gengetopt < bsatool.ggo
|