forked from banthar/Go-SDL
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
41 lines (34 loc) · 750 Bytes
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
# Copyright 2009 The Go Authors. All rights reserved.
# Use of this source code is governed by a BSD-style
# license that can be found in the LICENSE file.
include $(GOROOT)/src/Make.inc
.PHONY: all install clean nuke fmt
all:
gomake -C sdl
gomake -C ttf
gomake -C mixer
gomake -C gfx
install: all
gomake -C sdl install
gomake -C ttf install
gomake -C mixer install
gomake -C gfx install
clean:
gomake -C sdl clean
gomake -C ttf clean
gomake -C mixer clean
gomake -C test clean
gomake -C gfx clean
gomake -C gui clean
nuke:
gomake -C sdl nuke
gomake -C ttf nuke
gomake -C mixer nuke
gomake -C gfx nuke
fmt:
gomake -C sdl fmt
gomake -C ttf fmt
gomake -C mixer fmt
gomake -C test fmt
gomake -C gfx fmt
gomake -C gui fmt