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 >
Makefile  |  1999-03-08  |  392b  |  20 lines

  1. .PHONY: test
  2.  
  3. CFLAGS=-Wall
  4. CC=gcc
  5. CXX=g++
  6. WINDRES=windres
  7. RM=rm -f
  8.  
  9. # This test verifies that there are no serious bugs
  10. # or typos in the headers.
  11.  
  12. # Expect warnings on c++ if compiler doesn't know of
  13. # the comobject attribute
  14.  
  15. test:
  16.     $(CC) $(CFLAGS) -I. -c test.c
  17.     $(CXX) $(CFLAGS) -DNOCOMOBJECT -DUNICODE -I. -c test.c
  18.     $(WINDRES) --include-dir . -i res.rc
  19.     $(RM) test.o
  20.