Browse Source

initial project import from KDevelop

master
Andreas 9 years ago
commit
7f9cc3e418
3 changed files with 20 additions and 0 deletions
  1. +9
    -0
      Makefile
  2. +7
    -0
      main.c
  3. +4
    -0
      xmss_ref.kdev4

+ 9
- 0
Makefile View File

@@ -0,0 +1,9 @@
CC=gcc
CFLAGS="-Wall"

debug:clean
$(CC) $(CFLAGS) -g -o xmss_ref main.c
stable:clean
$(CC) $(CFLAGS) -o xmss_ref main.c
clean:
rm -vfr *~ xmss_ref

+ 7
- 0
main.c View File

@@ -0,0 +1,7 @@
#include <stdio.h>
#include <stdlib.h>

int main(int argc, char **argv) {
printf("Hello World!");
return 0;
}

+ 4
- 0
xmss_ref.kdev4 View File

@@ -0,0 +1,4 @@
[Project]
Name=xmss_ref
Manager=KDevCustomMakeManager
VersionControl=kdevgit

Loading…
Cancel
Save