home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / octa21fs.zip / octave / dlfcn / test / makefile < prev    next >
Makefile  |  2000-01-15  |  294b  |  18 lines

  1. CFLAGS=-Wall -O2 -m486 -Zomf
  2. CC=gcc $(CFLAGS)
  3.  
  4. LFLAGS=-Zsys
  5.  
  6.  
  7. all: dlltest.exe
  8.  
  9.  
  10. dlltest.exe: dlltest.def dlltest.obj
  11.     $(CC) -o dlltest.exe dlltest.def dlltest.obj ../dlfcn.lib $(LFLAGS)
  12.  
  13. dlltest.obj: dlltest.c
  14.     $(CC) -o dlltest.obj -c dlltest.c
  15.  
  16. clean:
  17.     rm -f *.exe *.o *.obj
  18.