Check for SYS/GL during library init. Reason is that
[AROS.git] / workbench / devs / diskimage / bz2_library / Makefile.ppc-aros
blob504a1366e385e60f3ab99ad9faa38793404f23c7
1 CROSS := powerpc-aros
2 CC := $(CROSS)-gcc
3 AS := $(CROSS)-as
4 RM := rm -f
5 CP := cp -p --remove-destination
7 CFLAGS := -fno-stack-protector -O3 -Wall -I../include -I../include/aros -Iinclude \
8         -DBZ_NO_STDIO
9 LINK := -nostartfiles
10 LIBS := -L../lib -lsupport
12 TARGET := bz2.library
13 VERSION := 1
14 OBJS := stub_ppc.o init.o malloc.o bzlib.o compress.o decompress.o huffman.o \
15         blocksort.o crctable.o randtable.o
16 RELEASEDIR := ../../release/ppc-aros/diskimage_device
18 # -------------------------------------------------------------
20 all: $(TARGET)
22 $(TARGET): $(OBJS) ../lib/libsupport.a
23         $(CC) $(LINK) -o $@ $(OBJS) $(LIBS)
25 init.o: $(TARGET)_rev.h
27 ../lib/libsupport.a:
28         $(MAKE) -C .. -f Makefile.ppc-aros lib/libsupport.a
30 install: all
31         $(CP) $(TARGET) LIBS:
33 dist: all
34         $(CP) $(TARGET) $(RELEASEDIR)/Libs/
36 clean:
37         $(RM) $(TARGET) $(OBJS)
39 revision:
40         bumprev $(VERSION) $(TARGET)