minimal autotools project with bootstrapbuild.sh launch
This commit is contained in:
11
c/Makefile.am
Normal file
11
c/Makefile.am
Normal file
@@ -0,0 +1,11 @@
|
||||
# This Makefile.am is REALLY where changes should be done
|
||||
|
||||
bin_PROGRAMS = laby
|
||||
|
||||
laby_SOURCES = allaby_reader.c allaby_main.c
|
||||
|
||||
laby_CPPFLAGS = $(ARTLOG_CPPFLAGS) $(ALEXPANDER_CPPFLAGS)
|
||||
|
||||
# in LDADD and not in LDFLAGS to be linked AFTER
|
||||
laby_LDADD = $(ARTLOG_LDFLAGS) $(ALEXPANDER_LDFLAGS)
|
||||
|
||||
6
c/allaby_main.c
Normal file
6
c/allaby_main.c
Normal file
@@ -0,0 +1,6 @@
|
||||
|
||||
// NOT YET IMPLEMENTED
|
||||
int main(int argc, char ** argv)
|
||||
{
|
||||
return 1;
|
||||
}
|
||||
2
c/allaby_reader.c
Normal file
2
c/allaby_reader.c
Normal file
@@ -0,0 +1,2 @@
|
||||
#include "allaby_reader.h"
|
||||
|
||||
9
c/allaby_reader.h
Normal file
9
c/allaby_reader.h
Normal file
@@ -0,0 +1,9 @@
|
||||
#ifndef __ALLABY_READER_H__
|
||||
#define __ALLABY_READER_H__
|
||||
|
||||
/** goal : read a labyrinth/maze created
|
||||
by java laby project
|
||||
**/
|
||||
|
||||
|
||||
#endif // __ALLABY_READER_H__
|
||||
Reference in New Issue
Block a user