2
0
mirror of https://github.com/bebbo/amigaos-cross-toolchain.git synced 2025-12-08 22:38:24 +00:00

Clean up compiler warnings and crash at link time.

This commit is contained in:
Krystian Bacławski
2012-02-16 19:08:34 -08:00
parent 8d4f789d7e
commit e2ba3b77c5
5 changed files with 209 additions and 98 deletions

View File

@ -1,9 +1,14 @@
CC = gcc
CFLAGS = -O2 -Wall -I../target/include -I../target/m68k-amigaos/sys-include
CFLAGS = -O2 -Wall -I../target/include
all: GccFindHit hunk2aout
BINS = GccFindHit hunk2aout
all: $(BINS)
GccFindHit.o: GccFindHit.c defs.h
hunk2aout.o: hunk2aout.c
hunk2aout.o: hunk2aout.c a.out.h
clean: GccFindHit hunk2aout
clean:
rm -f $(BINS) *.o *~
# vim: set noexpandtab ts=8 sw=8 :