changeset 28 | b8fa7dfeeaa1 |
parent 13 | c327db0664bb |
27:3a31ca4b29c4 | 28:b8fa7dfeeaa1 |
---|---|
13 # Description: |
13 # Description: |
14 # Utility makefile |
14 # Utility makefile |
15 # |
15 # |
16 # |
16 # |
17 |
17 |
18 TARGET:=sbs_descramble |
|
19 SOURCES:=$(SBS_HOME:\=/)/util/descramble/descramble.cpp |
|
20 |
18 |
21 ifeq ($(filter win,$(HOSTPLATFORM)),win) |
19 .PHONY: all |
22 CFLAGS:=-DWIN32 |
|
23 LDFLAGS:= |
|
24 else |
|
25 CFLAGS:= |
|
26 LDFLAGS:=-lpthread |
|
27 endif |
|
28 |
20 |
29 $(eval $(cppprogram)) |
21 all: |
22 cd .. && make descramble |