blob: 6b411d78c31f8156564edb48930e7828167bea6a (
plain) (
blame)
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
|
# Copying and distribution of this file, with or without modification,
# are permitted in any medium without royalty provided the copyright
# notice and this notice are preserved. This file is offered as-is,
# without any warranty.
.POSIX:
CXX = c++
BIN = malloc new alloca
OBJ = $(BIN:=.o)
all: $(BIN)
$(OBJ):
.cc.o:
$(CXX) -c -o $@ $< -O0
.o:
$(CXX) -o $@ $<
clean:
-rm -f -- *.o $(BIN)
.SUFFIXES:
.SUFFIXES: .o .cc
.PHONY: all clean
|