ps3stor_region: fixed ps3stor_mgr_get_region_acl
[ps3stor-utils.git] / Makefile
blob9fd6ac09848be36ea48a34618c7d8e5b36e31aac
2 CC=gcc
3 CFLAGS=-Wall -O2 -g -m64
4 LDFLAGS=-m64
6 SRC_ps3stor_region=ps3stor_mgr.c ps3stor_region.c
7 OBJ_ps3stor_region=$(SRC_ps3stor_region:.c=.o)
8 TARGET_ps3stor_region=ps3stor_region
10 all: $(TARGET_ps3stor_region)
12 $(TARGET_ps3stor_region): $(OBJ_ps3stor_region)
13 $(CC) $(LDFLAGS) -o $@ $^
15 %.o: %.c
16 $(CC) $(CFLAGS) -c $<
18 .PHONY: clean
19 clean:
20 rm -f $(OBJ_ps3stor_region) $(TARGET_ps3stor_region)