mirror of
https://github.com/reactos/reactos.git
synced 2024-11-11 01:04:11 +00:00
c424146e2c
svn path=/branches/cmake-bringup/; revision=48236
22 lines
484 B
Makefile
22 lines
484 B
Makefile
# Copyright (c) 2000-2002 IBM, Inc. and others
|
|
# sample code makefile
|
|
|
|
# Usage:
|
|
# - configure, build, install ICU (make install)
|
|
# - make sure "icu-config" (in the ICU installed bin directory) is on
|
|
# the path
|
|
# - do 'make' in this directory
|
|
|
|
#### definitions
|
|
# Name of your target
|
|
TARGET=coll
|
|
|
|
# All object files (C or C++)
|
|
OBJECTS=coll.o
|
|
|
|
#### rules
|
|
# Load in standard makefile definitions
|
|
include ../defs.mk
|
|
|
|
# the actual rules (this is a simple sample)
|
|
include ../rules.mk
|