mirror of
https://github.com/claunia/flac.git
synced 2025-12-16 18:54:26 +00:00
15 lines
240 B
Makefile
15 lines
240 B
Makefile
|
|
#
|
||
|
|
# GNU makefile
|
||
|
|
#
|
||
|
|
|
||
|
|
PROGRAM_NAME = test_unit
|
||
|
|
INCLUDES = -I../libFLAC/include -I../../include
|
||
|
|
LIBS = -lFLAC -lm
|
||
|
|
OBJS = \
|
||
|
|
bitbuffer.o \
|
||
|
|
main.o
|
||
|
|
|
||
|
|
include ../../build/exe.mk
|
||
|
|
|
||
|
|
# DO NOT DELETE THIS LINE -- make depend depends on it.
|