Parent Directory | Revision Log
Added GNUmakefile for systems with GNU make.
1 | trond | 17 | # $Ximalas$ |
2 | |||
3 | NAME = darkstattype | ||
4 | |||
5 | #CC = gcc | ||
6 | #LD = gcc | ||
7 | |||
8 | CC = clang | ||
9 | LD = clang | ||
10 | |||
11 | RM = rm | ||
12 | |||
13 | CFLAGS = -Wall -O3 | ||
14 | LDFLAGS = -s | ||
15 | |||
16 | all: $(NAME) | ||
17 | |||
18 | $(NAME): $(NAME).o | ||
19 | |||
20 | $(NAME).o: $(NAME).c | ||
21 | |||
22 | clean: | ||
23 | $(RM) -f $(NAME) $(NAME).o |
Name | Value |
---|---|
svn:eol-style | native |
svn:keywords | Ximalas=%H |
svn:mime-type | text/plain |
svn@ximalas.info | ViewVC Help |
Powered by ViewVC 1.3.0-dev |