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
2012-02-16 19:08:34 -08:00

15 lines
225 B
Makefile

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