~ubuntu-branches/ubuntu/hoary/flac/hoary

« back to all changes in this revision

Viewing changes to src/monkeys_audio_utilities/flac_mac/Makefile.vc

  • Committer: Bazaar Package Importer
  • Author(s): Matt Zimmerman
  • Date: 2004-04-16 15:14:31 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20040416151431-eyloggqxpwbwpogz
Tags: 1.1.0-11
Ensure that libFLAC is linked with -lm on all architectures, and
regardless of whether nasm is present

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
!include <win32.mak>
2
 
 
3
 
.c.obj:
4
 
        $(cc) $(cdebug) $(cflags) -DSTRICT -YX /O2 -DNODEBUG $<
5
 
 
6
 
C_FILES= \
7
 
        main.c
8
 
 
9
 
OBJS= $(C_FILES:.c=.obj)
10
 
 
11
 
all: flac_mac.exe
12
 
 
13
 
flac_mac.exe: $(OBJS)
14
 
        link.exe $(OBJS) -out:$*.exe
15
 
 
16
 
clean:
17
 
        -del *.obj *.pch
18
 
        -del flac_mac.exe