2
0
mirror of https://github.com/bebbo/amigaos-cross-toolchain.git synced 2025-12-08 22:38:24 +00:00
Files
amigaos-cross-toolchain6/tools/Makefile
2014-01-04 23:40:49 +01:00

16 lines
276 B
Makefile

CC = gcc -m32
CFLAGS = -g -O2 -Wall -I../target/os-include
BINS = GccFindHit hunk2aout elf2hunk
all: $(BINS)
GccFindHit.o: GccFindHit.c defs.h a.out.h
hunk2aout.o: hunk2aout.c a.out.h
elf2hunk.o: elf2hunk.c
clean:
rm -f $(BINS) *.o *~
# vim: set noexpandtab ts=8 sw=8 :