mirror of
https://github.com/Oibaf66/uae-wii.git
synced 2024-11-11 05:15:06 +01:00
12 lines
220 B
Makefile
12 lines
220 B
Makefile
|
#!/usr/bin/make -f
|
||
|
# Makefile to build UAE amiga tools with GCC
|
||
|
|
||
|
CC = gcc
|
||
|
CFLAGS = -O2 -noixemul -fomit-frame-pointer -msmall-code -fbaserel
|
||
|
LDFLAGS = $(CFLAGS) -s
|
||
|
|
||
|
timehack: timehack.o
|
||
|
|
||
|
clean:
|
||
|
-rm timehack timehack.o
|