summaryrefslogtreecommitdiff
path: root/i/siroco/src/pg_test/Makefile
blob: 51078ad31e0994039e70e0354e5e0172b410c589 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# Mon Makefile
TARGET_A = message_test
OBJECTS_A = ../message.o

# TARGET_B = 
# OBJECTS_B = 

# LIB = -lccgnu2 -ldl -pthread

CFLAGS = -O2 -Wall -g
CC = g++


all: $(TARGET_A) $(TARGET_B)

$(TARGET_A): $(OBJECTS_A)
	$(CC) $(CFLAGS) -o $@ $^ $(LIB)

$(TARGET_B): $(OBJECTS_B)
	$(CC) $(CFLAGS) -o $@ $^ $(LIB)