shell prompt should not beep and only show MSYSTEM when non-standard.
[msysgit.git] / src / git-wrapper / Makefile
blobc75c9441f2dc94291615e3706e6965caebf369b4
1 CC = gcc
2 CFLAGS = -Wall -Wwrite-strings
3 LD = gcc
4 LDFLAGS = -Wall -s
5 LIBS =-lshell32 -lshlwapi
7 all: git-wrapper
9 git-wrapper: git-wrapper.o
10 $(LD) $(LDFLAGS) -o $@ $^ $(LIBS)
12 clean:
13 -rm -f git-wrapper.o git-wrapper.exe
15 %.o: %.c
16 $(CC) $(CFLAGS) -c $^ -o $@