home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World 2001 May
/
PCWorld_2001-05_cd.bin
/
Software
/
Vyzkuste
/
devc
/
_SETUP.5
/
Group3
/
Makefile
< prev
next >
Wrap
Makefile
|
1999-03-08
|
392b
|
20 lines
.PHONY: test
CFLAGS=-Wall
CC=gcc
CXX=g++
WINDRES=windres
RM=rm -f
# This test verifies that there are no serious bugs
# or typos in the headers.
# Expect warnings on c++ if compiler doesn't know of
# the comobject attribute
test:
$(CC) $(CFLAGS) -I. -c test.c
$(CXX) $(CFLAGS) -DNOCOMOBJECT -DUNICODE -I. -c test.c
$(WINDRES) --include-dir . -i res.rc
$(RM) test.o