Files
amigaos-cross-toolchain6/tools/Makefile
T
2013-07-19 10:43:32 +02:00

15 lines
244 B
Makefile

CC = gcc -m32
CFLAGS = -g -O2 -Wall -I../target/os-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 :