13 lines
255 B
Makefile
13 lines
255 B
Makefile
EE_BIN = ludarium.elf
|
|
EE_OBJS = main.o
|
|
EE_LIBS = -lpacket -ldma -lgraph -ldraw -lc
|
|
|
|
all: $(EE_BIN)
|
|
$(EE_STRIP) --strip-all $(EE_BIN)
|
|
|
|
clean:
|
|
rm -f $(EE_BIN) $(EE_OBJS)
|
|
|
|
include $(PS2SDK)/samples/Makefile.pref
|
|
include $(PS2SDK)/samples/Makefile.eeglobal
|