Added hint about removed "freepascal" to a file which is supposed to have that inform...
[AROS-Contrib.git] / MultiMedia / abcm2ps / Makefile.w32
blob488bb79621032b861ff8a37ddd05323439595c81
1 # Makefile.w32
3 # This Makefile will compile abcm2ps using djgpp or mingw out of the box.
4 # If you use cygwin but want to make a mingw binary, change CFLAGS below.
6 VERSION = 4.8.0
7 ABCM2PS = abcm2ps.exe
8 CC      = gcc
9 # settings for djgpp or mingw32
10 CFLAGS  = -O2 -Wall -DHAVE_CONFIG_H -I.
11 # to make a mingw executable using cygwin, use these CFLAGS:
12 # CFLAGS = -O2 -Wall -DHAVE_CONFIG_H -mno-cygwin -I. \
13 # -I/usr/include/mingw -L/usr/lib/mingw
15 OBJECTS=abc2ps.o abcparse.o buffer.o deco.o draw.o format.o music.o \
16         parse.o subs.o syms.o
18 $(ABCM2PS): $(OBJECTS)
19         $(CC) $(CFLAGS) -o $(ABCM2PS) $(OBJECTS)
21 $(OBJECTS): abcparse.h abc2ps.h config.h
23 zip: $(ABCM2PS)
24         strip $(ABCM2PS); \
25         cd ..; zip -r abcm2ps-$(VERSION).zip \
26         abcm2ps-$(VERSION)/$(ABCM2PS) \
27         abcm2ps-$(VERSION)/License \
28         abcm2ps-$(VERSION)/Changes \
29         abcm2ps-$(VERSION)/INSTALL \
30         abcm2ps-$(VERSION)/sample3.eps \
31         abcm2ps-$(VERSION)/*.abc \
32         abcm2ps-$(VERSION)/*.fmt \
33         abcm2ps-$(VERSION)/*.txt ; cd -
35 clean:
36         rm -f *.o
38 # End of file Makefile.w32