Subversion Repositories freemyipod

Rev

Rev 141 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
141 cmwslw 1
CC= gcc
2
OPTS= -Wall -g
3
 
462 theseven 4
ifeq ($(shell uname),WindowsNT)
5
CCACHE :=
6
else
7
CCACHE := $(shell which ccache)
8
endif
9
 
141 cmwslw 10
all: extract2g
11
 
12
extract2g: extract2g.c extract2g.h
462 theseven 13
	$(CCACHE) $(CC) $(OPTS) $< -o $@
141 cmwslw 14
 
15
.PHONY: clean
16
clean:
17
	rm -f extract2g