blob: 0b8a2bd95355b61b58793c0d10620dab37863c07 (
plain)
1
2
3
4
5
6
7
8
9
10
|
# We replace the makefile since the upstream one is not suitable for
# us :(
OBJS := $(patsubst %.c,%.o,$(wildcard *.c))
CFLAGS += -DMAGICISO_IS_SHIT
LDLIBS = -lz
uif2iso: $(OBJS)
|