~ubuntu-branches/ubuntu/trusty/linuxlogo/trusty

« back to all changes in this revision

Viewing changes to libsysinfo-0.1.0/all/Makefile

  • Committer: Bazaar Package Importer
  • Author(s): Daniel Baumann
  • Date: 2008-06-20 09:19:00 UTC
  • mfrom: (4.1.2 intrepid)
  • Revision ID: james.westby@ubuntu.com-20080620091900-4xzuv7c7ntxvs7wt
Tags: 5.03-4
* Adding patch to fix FTBFS on s390x.
* Updating to standards 3.8.0.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#Your compiler.  If gcc doesn't work, try CC
2
 
CC = gcc
3
 
 
4
 
C_FLAGS = -O2 -Wall -I..
5
 
 
6
 
all:    bogomips.o fix_mhz.o parsing.o sysinfo_common.o uname.o
7
 
 
8
 
bogomips.o:     bogomips.c
9
 
        $(CC) $(C_FLAGS) -c bogomips.c
10
 
 
11
 
fix_mhz.o:      fix_mhz.c
12
 
        $(CC) $(C_FLAGS) -c fix_mhz.c
13
 
 
14
 
parsing.o:      parsing.c
15
 
        $(CC) $(C_FLAGS) -c parsing.c
16
 
 
17
 
sysinfo_common.o:       sysinfo_common.c
18
 
        $(CC) $(C_FLAGS) -c sysinfo_common.c
19
 
 
20
 
uname.o:        uname.c
21
 
        $(CC) $(C_FLAGS) -c uname.c 
22
 
 
23
 
clean:
24
 
        rm -f *.o
25
 
        rm -f *~