Просмотр исходного кода

Early mehods
Author: jgg
Date: 1998-10-20 02:43:03 GMT
Early mehods

Arch Librarian лет назад: 22
Родитель
Сommit
9391a747a8
2 измененных файлов с 22 добавлено и 0 удалено
  1. 9 0
      methods/file.cc
  2. 13 0
      methods/makefile

+ 9 - 0
methods/file.cc

@@ -0,0 +1,9 @@
+#include <stdio.h>
+
+int main()
+{
+   printf("100 Capabilities\n"
+	  "Version: 1.0\n"
+	  "Pre-Scan: true\n\n"
+	  "Version: 1.0\n\n");
+}

+ 13 - 0
methods/makefile

@@ -0,0 +1,13 @@
+# -*- make -*-
+BASE=..
+SUBDIR=methods
+
+# Bring in the default rules
+include ../buildlib/defaults.mak
+BIN := $(BIN)/methods
+
+# The file method
+PROGRAM=file
+SLIBS = -lapt-pkg 
+SOURCE = file.cc
+include $(PROGRAM_H)