6 lines
89 B
Makefile
6 lines
89 B
Makefile
OPT = -O2
|
|
CFLAGS = -I../include
|
|
|
|
pack_file: pack_file.cpp
|
|
g++ -o $@ $(OPT) $(CFLAGS) $^
|