-
Notifications
You must be signed in to change notification settings - Fork 4
/
Makefile
52 lines (42 loc) · 883 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
42
43
44
45
46
47
48
49
50
51
52
################################################################################
#
# Copyright (c) 2010 Evan Green
#
# Module Name:
#
# Starry Night Screen Saver
#
# Abstract:
#
# This file specifies how to build the Starry Night screen saver.
#
# Author:
#
# Evan Green 22-Aug-2010
#
# Environment:
#
# Windows
#
################################################################################
BINARY = starryn.scr
OBJS = starryn.o config.rsc
CC = gcc
LD = ld
RCC = windres
CCOPTIONS = -Wall -Werror -c -I include -I .
.PHONY: all clean
all: $(BINARY)
$(BINARY): $(OBJS)
@echo Linking $@
@$(CC) -mwindows -o $@ $^ -lwinmm
%.o:%.c
@echo Compiling - $<
@$(CC) $(CCOPTIONS) -o $@ $<
%.rsc:%.rc
@echo Compiling Resource - $<
@$(RCC) -o $@ $<
clean:
-rm *.o
-rm *.rsc
-rm $(BINARY)