2
0
mirror of https://frontier.innolan.net/github/amigaos-cross-toolchain6.git synced 2024-10-19 10:29:55 +00:00
Files
amigaos-cross-toolchain6/tools/Makefile
2012-02-16 19:31:44 -08:00

15 lines
233 B
Makefile

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