Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
594 B

  1. !IF 0
  2. Copyright (c) Microsoft Corporation
  3. !ENDIF
  4. $(O)\dll1.res : \
  5. $(O)\CApartmentThreaded.rgs \
  6. $(O)\CBothThreaded.rgs \
  7. $(O)\CFreeThreaded.rgs \
  8. $(O)\CSingleThreaded.rgs
  9. .SUFFIXES: .rgssrc .rgs
  10. {..}.rgssrc{$(O)\}.rgs:
  11. $(CXX_COMPILER_NAME) $(CXX_COMPILER_FLAGS) -EP $(USE_FC) $< | perl <<$(O)\cleanup_rgs.pl > $@
  12. $$file = join("", <>); # read all the lines into one string
  13. $$file =~ s/^#.+$$//gm; # remove preprocessor directives
  14. $$file =~ s/\n+/\n/gms; # remove empty lines
  15. print($$file); # and print it all back out
  16. <<KEEP