Some "cast to pointer from integer of different size" warnings removed.
[AROS-Contrib.git] / MultiMedia / playcdda / Makefile
blob5b6fd72936d3bc1e7ac9d1e139aceb9347a75060
1 CC := i386-aros-gcc
2 RM := rm -f
4 CFLAGS := -O3 -Wall -Wno-pointer-sign -Iinclude -DMUI_OBSOLETE
5 LINK := -s
6 LIBS := -lmui
8 TARGET := PlayCDDA
9 VERSION := 1
10 OBJS := playcdda_gui.o scsicmd.o diskchange.o seekbar.o
12 ../PlayCDDA/$(TARGET): $(OBJS)
13 $(CC) $(LINK) -o $@ $^ $(LIBS)
15 playcdda_gui.o: $(TARGET)_rev.h
17 clean:
18 $(RM) $(OBJS)
20 revision:
21 bumprev $(VERSION) $(TARGET)