comparison interps/fukyorbrane/Makefile @ 996:859f9b4339e6

<Gregor> tar xf egobot.tar.xz
author HackBot
date Sun, 09 Dec 2012 19:30:08 +0000
parents
children
comparison
equal deleted inserted replaced
995:6883f5911eb7 996:859f9b4339e6
1 CC=gcc
2 CFLAGS=-O2 -g
3 LDFLAGS=
4
5 FYB_OBJS=fukyorbrane.o
6 REPORT_OBJS=report.o
7 REPORT_LIBS=-pthread
8
9 .SUFFIXES: .c .o
10
11 all: fukyorbrane report
12
13 fukyorbrane: $(FYB_OBJS)
14 $(CC) $(CFLAGS) $(LDFLAGS) $(FYB_OBJS) -o fukyorbrane
15
16 report: $(REPORT_OBJS)
17 $(CC) $(CFLAGS) $(LDFLAGS) $(REPORT_OBJS) $(REPORT_LIBS) -o report
18
19 .c.o:
20 $(CC) $(CFLAGS) -c $<
21
22 clean:
23 rm -f $(FYB_OBJS) fukyorbrane
24 rm -f $(REPORT_OBJS) report