home *** CD-ROM | disk | FTP | other *** search
Makefile | 2000-11-20 | 726 b | 31 lines |
- #
- # Amster
- # GCC makefile for MorphOS
- #
-
- SHELL = /bin/sh
- CC = gcc
-
- CFLAGS = -O -fomit-frame-pointer -mstrict-align -I./include -I. -DMORPHOS
- LDFLAGS = -noixemul
- OBJS = amster_Cat.oPPC main.oPPC about.oPPC gui.oPPC search.oPPC panel.oPPC transfer.oPPC download.oPPC share.oPPC upload.oPPC prefs.oPPC info.oPPC msg.oPPC chat.oPPC chatline.oPPC napster.oPPC rexx.oPPC thread.oPPC sound.oPPC lamp.oPPC url.oPPC mui.oPPC md5.oPPC navigator.oPPC hotlist.oPPC resultview.oPPC channellist.oPPC
-
- #%.oPPC: %.c
- # ./tools/pregcc <$*.c >/t/$*.cp
- # $(CC) $(CFLAGS) -x c -c /t/$*.cp -o $*.oPPC
-
-
- %.oPPC: %.c
- $(CC) $(CFLAGS) -c $< -o $@
-
- #
-
- Amster.elf: $(OBJS)
- $(CC) $(LDFLAGS) $(OBJS) -o Amster.elf
-
- #
-
- .PHONY : clean
- clean:
- rm -f *.oPPC
-