~clacke/stackoverflowq-2623437/patchfun-rollstack

« back to all changes in this revision

Viewing changes to Makefile

  • Committer: Claes Wallin
  • Date: 2010-05-09 13:26:34 UTC
  • Revision ID: clacke@sefagl485.raby.clacke.se-20100509132634-gr45sq2cdqd36l0q
cleaned away c

Show diffs side-by-side

added added

removed removed

Lines of Context:
3
3
 
4
4
default: all
5
5
 
6
 
FILES=patchfun-c.s patchfun-c patchfun-cc.s patchfun-cc patchfun-cc-patch.s
 
6
FILES=patchfun-cc.s patchfun-cc patchfun-cc-patch.s
7
7
 
8
8
all: $(FILES)
9
9
 
10
10
clean:
11
11
        -rm $(FILES)
12
12
 
13
 
%.s: %.c
14
 
        i586-mingw32msvc-gcc $(CFLAGS) -S -o $@ $<
15
 
 
16
 
%: %.c
17
 
        i586-mingw32msvc-gcc $(CFLAGS) -o $@ $^
18
 
 
19
13
%.s: %.cc
20
14
        i586-mingw32msvc-g++ $(CXXFLAGS) -S -masm=intel -o $@ $<
21
15
 
22
16
%: %.cc
23
17
        i586-mingw32msvc-g++ $(CXXFLAGS) -masm=intel -o $@ $^
24
18
 
25
 
patchfun-c: patchfun-c.c patchfun-c-receiver.c
26
19
patchfun-cc: patchfun-cc.cc patchfun-cc-receiver.cc patchfun-cc-patch.cc