~ubuntu-branches/ubuntu/karmic/rovclock/karmic

« back to all changes in this revision

Viewing changes to Makefile

  • Committer: Bazaar Package Importer
  • Author(s): Alexander GQ Gerasiov
  • Date: 2006-05-18 17:05:15 UTC
  • Revision ID: james.westby@ubuntu.com-20060518170515-v8t9zhcfmrtgfyra
Tags: upstream-0.6e
ImportĀ upstreamĀ versionĀ 0.6e

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Makefile for rovclock
 
2
#
 
3
 
 
4
PROG = rovclock
 
5
SRCS = rovclock.c
 
6
 
 
7
CLEANFILES = $(PROG) 
 
8
 
 
9
CC = gcc
 
10
DEFS =  
 
11
CFLAGS = -O2 -Wall -Wstrict-prototypes $(DEFS)
 
12
 
 
13
all: $(PROG)
 
14
 
 
15
$(PROG): $(SRCS)
 
16
        $(CC) $(CFLAGS) -o $@ $^
 
17
 
 
18
$(SRCS): $(HDRS)
 
19
 
 
20
clean: 
 
21
        $(RM) $(CLEANFILES)