OLD | NEW |
1 # Copyright (c) 2010 The Chromium OS Authors. All rights reserved. | 1 # Copyright (c) 2010 The Chromium OS Authors. All rights reserved. |
2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 SRCS = platform_MiniJailReadOnlyFS.cc | 5 SRCS = platform_MiniJailReadOnlyFS.cc |
6 TARGET = ../platform_MiniJailReadOnlyFS | 6 TARGET = ../platform_MiniJailReadOnlyFS |
7 | 7 |
8 LDFLAGS = -lbase -lrt | 8 LDFLAGS = -lbase -lglib-2.0 -lrt |
9 | 9 |
10 all: $(TARGET) | 10 all: $(TARGET) |
11 | 11 |
12 $(TARGET): $(SRCS) | 12 $(TARGET): $(SRCS) |
13 $(CXX) -O3 -o $@ $^ -Wall $(LDFLAGS) | 13 $(CXX) -O3 -o $@ $^ -Wall $(LDFLAGS) |
14 | 14 |
15 clean: | 15 clean: |
16 $(RM) $(TARGET) | 16 $(RM) $(TARGET) |
OLD | NEW |