mirror of
https://github.com/claunia/flac.git
synced 2025-12-16 18:54:26 +00:00
20 lines
324 B
Makefile
20 lines
324 B
Makefile
!include <win32.mak>
|
|
|
|
# It's less hassle to spell it all out that to figure out how to do it right with nmake:
|
|
|
|
all:
|
|
cd flac_mac
|
|
nmake /f Makefile.vc
|
|
cd ..
|
|
cd flac_ren
|
|
nmake /f Makefile.vc
|
|
cd ..
|
|
|
|
clean:
|
|
cd flac_mac
|
|
nmake /f Makefile.vc clean
|
|
cd ..
|
|
cd flac_ren
|
|
nmake /f Makefile.vc clean
|
|
cd ..
|