File: Makefile

package info (click to toggle)
mol 0.9.61-6
  • links: PTS
  • area: contrib
  • in suites: woody
  • size: 6,140 kB
  • ctags: 8,491
  • sloc: ansic: 50,560; asm: 2,826; sh: 458; makefile: 373; perl: 165; lex: 135; yacc: 131
file content (34 lines) | stat: -rw-r--r-- 873 bytes parent folder | download
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
#
#   Creation Date: <1999/03/28 04:20:31 samuel>
#   Time-stamp: <2001/06/20 23:13:22 samuel>
#   
#	<Makefile>
#	
#	Rules for building targets to be run within MOL
#   
#   Copyright (C) 1999, 2000, 2001 Samuel Rydh (samuel@ibrium.se)
#   
#   This program is free software; you can redistribute it and/or
#   modify it under the terms of the GNU General Public License
#   as published by the Free Software Foundation
#

C_TARGET 	= selftest
O_OBJS 		= $(addprefix obj/, init.o performance.o selftest.o vsprintf.o )

CFLAGS_EXTRA 	= $(CFLAGS_MM) -I$(SHEADERS_PATH) -I./include -I../../include
ASMFLAGS_EXTRA  = -I../../include -I$(SHEADERS_PATH)

lgcc 		= $(shell $(CC) -print-libgcc-file-name)

include ../../Rules.make


$(C_TARGET):
	ld -Ttext=0x0 $(O_OBJS) $(lgcc) -o $@
	strip $@
	@cp $@ $(MOL_LIB_DIR)/bin/$(C_TARGET)
	@chmod a-x $(MOL_LIB_DIR)/bin/$(C_TARGET)