changeset 625 | a1925fb7753a |
parent 590 | 360bd6b35136 |
624:f70b728ea30c | 625:a1925fb7753a |
---|---|
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 |