home *** CD-ROM | disk | FTP | other *** search
/ OpenStep (Enterprise) / OpenStepENTCD.toast / OEDEV / DEV.Z / makefile < prev    next >
Encoding:
Makefile  |  1995-10-16  |  152 b   |  11 lines

  1. O_FILES = dllmain.o Calc.o
  2.  
  3. DLL_NAME = Calc.dll 
  4.  
  5. all: $(O_FILES) 
  6.     gcc -g -dll -o $(DLL_NAME) $(O_FILES)
  7.     
  8. .c.o .m.o : 
  9.     gcc -g -c -o $@ $<
  10.  
  11.